django-gssapi/tox.ini

51 lines
1.3 KiB
INI

# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/django-gssapi/{env:BRANCH_NAME:}
envlist = py27-dj111{-stretch,},py3-{dj111,dj20,dj22,dj3x},pylint
[testenv]
whitelist_externals =
/bin/mv
/bin/rm
setenv =
DJANGO_SETTINGS_MODULE=settings
PYTHONPATH=tests
COVERAGE={tty::--cov-branch --cov-append --cov=src/ --cov-report=html --cov-report=xml --cov-config .coveragerc}
DB_ENGINE=django.db.backends.sqlite3
usedevelop = true
deps =
stretch: gssapi<1.2.3
dj18: django>1.8,<1.9
dj18: django-tables2<1.1
dj111: django<2.0
dj20: django<2.1
dj22: django<2.3
dj3x: django<4
djlast: django
pytest
pytest-mock
pytest-django
pytest-cov
k5test
django-rest-framework
commands =
py.test {env:COVERAGE:} -o junit_suite_name={envname} --junit-xml=junit-{envname}.xml {posargs:tests}
[testenv:pylint]
basepython=python3
deps =
pylint
pylint-django
django-rest-framework
django<2.3
commands =
pylint: ./pylint.sh src/django_gssapi/
[pytest]
filterwarnings =
ignore:.*example backend.*