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
Raw Normal View History

2013-08-09 00:15:37 +02:00
[tox]
envlist = django1.3, django1.4
[testenv]
deps =
django-registration==0.8
2013-08-09 00:38:06 +02:00
coverage
2013-08-09 16:46:41 +02:00
pep8
2013-08-09 00:15:37 +02:00
commands =
2013-08-09 01:05:36 +02:00
coverage erase
coverage run --source="{envsitepackagesdir}/secretquestions/" {envdir}/bin/django-admin.py test secretquestions --settings=secretquestions.tests.settings
2013-08-09 16:46:41 +02:00
pep8 -r --statistics --count {envsitepackagesdir}/secretquestions/ --exclude={envsitepackagesdir}/secretquestions/migrations/*
2013-08-09 00:38:06 +02:00
coverage report
2013-08-09 00:15:37 +02:00
[testenv:django1.3]
deps =
{[testenv]deps}
django==1.3
[testenv:django1.4]
deps =
{[testenv]deps}
django==1.4