django-rest-framework/tox.ini

45 lines
1.1 KiB
INI
Raw Normal View History

[pytest]
addopts=--tb=short
2012-09-25 15:21:05 +04:00
[tox]
2014-05-16 02:50:16 +04:00
envlist =
{py27,py34,py35}-django110,
{py27,py34,py35,py36}-django111,
{py34,py35,py36}-django20,
{py35,py36}-djangomaster
lint,docs
[travis:env]
DJANGO =
1.10: django110
1.11: django111
2.0: django20
master: djangomaster
2012-09-25 15:21:05 +04:00
[testenv]
2015-12-16 15:27:40 +03:00
commands = ./runtests.py --fast {posargs} --coverage -rw
setenv =
PYTHONDONTWRITEBYTECODE=1
2016-02-04 21:58:50 +03:00
PYTHONWARNINGS=once
deps =
django110: Django>=1.10,<1.11
django111: Django>=1.11,<2.0
2017-11-23 07:16:07 +03:00
django20: Django>=2.0rc1,<2.1
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
2013-02-01 18:03:28 +04:00
[testenv:lint]
basepython = python2.7
2015-06-25 23:58:24 +03:00
commands = ./runtests.py --lintonly
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
[testenv:docs]
basepython = python2.7
2015-06-25 23:58:24 +03:00
commands = mkdocs build
2014-10-23 00:22:16 +04:00
deps =
-rrequirements/requirements-testing.txt
-rrequirements/requirements-documentation.txt