django-rest-framework/tox.ini

61 lines
1.7 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 =
2015-06-25 23:58:24 +03:00
py27-{lint,docs},
{py27,py32,py33,py34}-django{17,18},
{py27,py34,py35}-django{master}
2012-09-25 15:21:05 +04:00
[testenv]
basepython =
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
py35: python3.5
2015-07-30 06:45:23 +03:00
commands = ./runtests.py --fast {posargs} --coverage
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django17: Django==1.7.10 # Should track maximum supported
django18: Django==1.8.4 # Should track maximum supported
2015-04-05 05:18:52 +03:00
djangomaster: https://github.com/django/django/archive/master.tar.gz
-rrequirements/requirements-testing.txt
-rrequirements/requirements-optionals.txt
2013-02-01 18:03:28 +04:00
2015-06-25 23:58:24 +03:00
[testenv:py27-lint]
commands = ./runtests.py --lintonly
deps =
-rrequirements/requirements-codestyle.txt
2015-03-23 18:59:18 +03:00
-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 =
-rrequirements/requirements-testing.txt
-rrequirements/requirements-documentation.txt
# Specify explicitly to exclude Django Guardian against Django master (various Pythons)
[testenv:py27-djangomaster]
deps =
https://github.com/django/django/archive/master.tar.gz
-rrequirements/requirements-testing.txt
markdown==2.5.2
django-filter==0.10.0
[testenv:py34-djangomaster]
deps =
https://github.com/django/django/archive/master.tar.gz
-rrequirements/requirements-testing.txt
markdown==2.5.2
django-filter==0.10.0
[testenv:py35-djangomaster]
deps =
https://github.com/django/django/archive/master.tar.gz
-rrequirements/requirements-testing.txt
markdown==2.5.2
django-filter==0.10.0