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.
django-kerberos/tox.ini

19 lines
524 B
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.
[testenv]
# django.contrib.auth is not tested it does not work with our templates
setenv=
DJANGO_SETTINGS_MODULE=settings
PYTHONPATH=src:tests
commands =
py.test --cov=src/ tests {posargs}
usedevelop = True
deps = coverage
pytest
pytest-mock
pytest-django
pytest-cov