mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
42 lines
1.0 KiB
INI
42 lines
1.0 KiB
INI
[pytest]
|
|
addopts=--tb=short
|
|
|
|
[tox]
|
|
envlist =
|
|
py27-{lint,docs},
|
|
{py27,py33,py34,py35}-django18,
|
|
{py27,py34,py35}-django19,
|
|
{py27,py34,py35}-django110,
|
|
{py27,py34,py35,py36}-django{master}
|
|
|
|
[testenv]
|
|
commands = ./runtests.py --fast {posargs} --coverage -rw
|
|
setenv =
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
PYTHONWARNINGS=once
|
|
deps =
|
|
django18: Django==1.8.17
|
|
django19: Django==1.9.12
|
|
django110: Django==1.10.5
|
|
djangomaster: https://github.com/django/django/archive/master.tar.gz
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-optionals.txt
|
|
basepython =
|
|
py36: python3.6
|
|
py35: python3.5
|
|
py34: python3.4
|
|
py33: python3.3
|
|
py27: python2.7
|
|
|
|
[testenv:py27-lint]
|
|
commands = ./runtests.py --lintonly
|
|
deps =
|
|
-rrequirements/requirements-codestyle.txt
|
|
-rrequirements/requirements-testing.txt
|
|
|
|
[testenv:py27-docs]
|
|
commands = mkdocs build
|
|
deps =
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-documentation.txt
|