mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
52 lines
1.3 KiB
INI
52 lines
1.3 KiB
INI
[tox]
|
|
envlist =
|
|
{py35,py36,py37}-django22,
|
|
{py36,py37,py38}-django30,
|
|
{py36,py37,py38}-djangomaster,
|
|
base,dist,lint,docs,
|
|
|
|
[travis:env]
|
|
DJANGO =
|
|
2.2: django22
|
|
3.0: django30
|
|
master: djangomaster
|
|
|
|
[testenv]
|
|
commands = ./runtests.py --fast --coverage {posargs}
|
|
envdir = {toxworkdir}/venvs/{envname}
|
|
setenv =
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
PYTHONWARNINGS=once
|
|
deps =
|
|
django22: Django>=2.2,<3.0
|
|
django30: Django>=3.0,<3.1
|
|
djangomaster: https://github.com/django/django/archive/master.tar.gz
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-optionals.txt
|
|
|
|
[testenv:base]
|
|
; Ensure optional dependencies are not required
|
|
deps =
|
|
django
|
|
-rrequirements/requirements-testing.txt
|
|
|
|
[testenv:dist]
|
|
commands = ./runtests.py --fast --no-pkgroot --staticfiles {posargs}
|
|
deps =
|
|
django
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-optionals.txt
|
|
|
|
[testenv:lint]
|
|
commands = ./runtests.py --lintonly
|
|
deps =
|
|
-rrequirements/requirements-codestyle.txt
|
|
-rrequirements/requirements-testing.txt
|
|
|
|
[testenv:docs]
|
|
skip_install = true
|
|
commands = mkdocs build
|
|
deps =
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-documentation.txt
|