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

25 lines
576 B
INI

[tox]
envlist = django1.3, django1.4
[testenv]
deps =
django-registration==0.8
coverage
pep8
commands =
coverage erase
coverage run --source="{envsitepackagesdir}/secretquestions/" {envdir}/bin/django-admin.py test secretquestions --settings=secretquestions.tests.settings
pep8 -r --statistics --count {envsitepackagesdir}/secretquestions/ --exclude={envsitepackagesdir}/secretquestions/migrations/*
coverage report
[testenv:django1.3]
deps =
{[testenv]deps}
django==1.3
[testenv:django1.4]
deps =
{[testenv]deps}
django==1.4