django-rest-framework/tox.ini

58 lines
1.5 KiB
INI
Raw Normal View History

2012-09-25 15:21:05 +04:00
[tox]
2014-05-16 02:50:16 +04:00
envlist =
2020-03-11 16:51:42 +03:00
{py35,py36,py37}-django22,
{py36,py37,py38}-django30,
{py36,py37,py38,py39}-django31,
{py36,py37,py38,py39}-django32,
{py38,py39}-djangomain,
base,dist,lint,docs,
[travis:env]
DJANGO =
2.2: django22
3.0: django30
3.1: django31
3.2: django32
main: djangomain
2012-09-25 15:21:05 +04:00
[testenv]
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning runtests.py --fast --coverage {posargs}
2017-12-14 13:48:03 +03:00
envdir = {toxworkdir}/venvs/{envname}
setenv =
PYTHONDONTWRITEBYTECODE=1
2016-02-04 21:58:50 +03:00
PYTHONWARNINGS=once
deps =
django22: Django>=2.2,<3.0
2019-12-03 14:13:44 +03:00
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2a1,<4.0
djangomain: https://github.com/django/django/archive/main.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:base]
; Ensure optional dependencies are not required
deps =
django
-rrequirements/requirements-testing.txt
2017-12-14 13:48:03 +03:00
[testenv:dist]
commands = ./runtests.py --fast --no-pkgroot --staticfiles {posargs}
2017-12-14 13:48:03 +03:00
deps =
django
-rrequirements/requirements-testing.txt
-rrequirements/requirements-optionals.txt
[testenv:lint]
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]
skip_install = true
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