2015-06-02 12:49:47 +03:00
|
|
|
[pytest]
|
|
|
|
addopts=--tb=short
|
|
|
|
|
2012-09-25 15:21:05 +04:00
|
|
|
[tox]
|
2014-05-16 02:50:16 +04:00
|
|
|
envlist =
|
2015-06-25 23:58:24 +03:00
|
|
|
py27-{lint,docs},
|
2016-05-03 12:52:05 +03:00
|
|
|
{py27,py32,py33,py34,py35}-django18,
|
2016-06-01 17:31:00 +03:00
|
|
|
{py27,py34,py35}-django19,
|
2016-06-23 16:12:51 +03:00
|
|
|
{py27,py34,py35}-django110,
|
|
|
|
{py27,py34,py35}-django{master}
|
2012-09-25 15:21:05 +04:00
|
|
|
|
|
|
|
[testenv]
|
2015-12-16 15:27:40 +03:00
|
|
|
commands = ./runtests.py --fast {posargs} --coverage -rw
|
2014-10-28 23:58:25 +03:00
|
|
|
setenv =
|
|
|
|
PYTHONDONTWRITEBYTECODE=1
|
2016-02-04 21:58:50 +03:00
|
|
|
PYTHONWARNINGS=once
|
2014-11-25 12:57:46 +03:00
|
|
|
deps =
|
2016-05-03 06:50:52 +03:00
|
|
|
django18: Django==1.8.13
|
2016-06-05 09:12:38 +03:00
|
|
|
django19: Django==1.9.7
|
2016-06-23 16:12:51 +03:00
|
|
|
django110: Django==1.10b1
|
|
|
|
djangomaster: https://github.com/django/django/archive/master.tar.gz
|
2015-09-28 13:44:07 +03:00
|
|
|
-rrequirements/requirements-testing.txt
|
|
|
|
-rrequirements/requirements-optionals.txt
|
2016-06-01 17:31:00 +03:00
|
|
|
basepython =
|
|
|
|
py35: python3.5
|
|
|
|
py34: python3.4
|
|
|
|
py33: python3.3
|
|
|
|
py32: python3.2
|
|
|
|
py27: python2.7
|
2013-02-01 18:03:28 +04:00
|
|
|
|
2015-06-25 23:58:24 +03:00
|
|
|
[testenv:py27-lint]
|
|
|
|
commands = ./runtests.py --lintonly
|
2014-11-25 12:57:46 +03:00
|
|
|
deps =
|
2015-09-28 13:44:07 +03:00
|
|
|
-rrequirements/requirements-codestyle.txt
|
|
|
|
-rrequirements/requirements-testing.txt
|
2012-09-25 15:21:05 +04:00
|
|
|
|
2014-10-23 00:22:16 +04:00
|
|
|
[testenv:py27-docs]
|
2015-06-25 23:58:24 +03:00
|
|
|
commands = mkdocs build
|
2014-10-23 00:22:16 +04:00
|
|
|
deps =
|
2015-02-17 15:46:55 +03:00
|
|
|
-rrequirements/requirements-testing.txt
|
|
|
|
-rrequirements/requirements-documentation.txt
|