mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
35 lines
582 B
INI
35 lines
582 B
INI
[tox]
|
|
toxworkdir=/tmp/tox/dpaste
|
|
skip_missing_interpreters=True
|
|
envlist=
|
|
coverage_setup
|
|
py{27,34,35,36}-django-{111}
|
|
py{34,35,36}-django-{20}
|
|
coverage_report
|
|
|
|
[testenv]
|
|
install_command=
|
|
pip install {opts} {packages}
|
|
|
|
extras=
|
|
standalone
|
|
tests
|
|
|
|
commands=
|
|
coverage run --append runtests.py
|
|
|
|
deps=
|
|
# Django versions
|
|
django-111: django>=1.11,<1.12
|
|
django-20: django==2.0
|
|
|
|
[testenv:coverage_setup]
|
|
basepython=python3.6
|
|
commands=
|
|
coverage erase
|
|
|
|
[testenv:coverage_report]
|
|
basepython=python3.6
|
|
commands=
|
|
coverage report
|
|
coverage html
|