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

21 lines
544 B
INI
Raw Normal View History

2013-08-09 00:15:37 +02:00
[tox]
2013-08-12 21:13:07 +02:00
envlist = django1.3
2013-08-09 00:15:37 +02:00
[testenv]
deps =
2013-08-13 05:58:22 +02:00
south
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
2013-08-12 21:13:07 +02:00
coverage run --source="{envsitepackagesdir}/auf/django/secretquestions/" {envdir}/bin/django-admin.py test secretquestions --settings=auf.django.secretquestions.tests.settings
pep8 -r --statistics --count {envsitepackagesdir}/auf/django/secretquestions/ --exclude={envsitepackagesdir}/auf/django/secretquestions/migrations/*
2013-08-09 00:38:06 +02:00
coverage report
2013-08-12 21:13:07 +02:00
coverage html
2013-08-09 00:15:37 +02:00
[testenv:django1.3]
deps =
{[testenv]deps}
django==1.3