This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
corbo/tox.ini

26 lines
701 B
INI

[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/corbo/{env:BRANCH_NAME:}
envlist = py2-coverage-django111,py3-django111
[testenv]
usedevelop =
coverage: True
setenv =
DJANGO_SETTINGS_MODULE=corbo.settings
CORBO_SETTINGS_FILE=tests/settings.py
coverage: COVERAGE=--junitxml=test_results.xml --cov-report xml --cov-report html --cov=corbo/ --cov-config .coveragerc
deps =
django>=1.11,<1.12
http://git.entrouvert.org/hobo.git/snapshot/hobo-master.tar.gz
pytest-cov
pytest-django>=3.1.1,<3.4.6
pytest>=3.0.4
django-webtest<1.9.3
django-ckeditor<4.5.3
djangorestframework>=3.3,<3.7
pylint==1.4.0
astroid==1.3.2
mock
commands =
py.test {env:COVERAGE:} {posargs:tests/}