2015-06-12 21:57:11 +00:00
|
|
|
[tox]
|
|
|
|
envlist=
|
|
|
|
py27-django17,
|
|
|
|
py27-django18,
|
2015-12-12 12:51:59 +00:00
|
|
|
py27-django19,
|
2015-06-21 16:56:16 +00:00
|
|
|
py34-django17,
|
|
|
|
py34-django18,
|
2015-12-12 12:51:59 +00:00
|
|
|
py34-django19,
|
2015-06-12 21:57:11 +00:00
|
|
|
flake8,
|
2016-06-29 21:48:29 +00:00
|
|
|
coverage
|
2015-06-12 21:57:11 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length=100
|
|
|
|
exclude=migrations
|
|
|
|
|
|
|
|
[base]
|
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements-dev.txt
|
|
|
|
|
|
|
|
[testenv]
|
2016-06-29 06:22:52 +00:00
|
|
|
commands=py.test {posargs:cas_server/tests/}
|
2015-06-12 21:57:11 +00:00
|
|
|
|
|
|
|
[testenv:py27-django17]
|
|
|
|
basepython=python2.7
|
|
|
|
deps =
|
|
|
|
Django>=1.7,<1.8
|
|
|
|
{[base]deps}
|
|
|
|
|
|
|
|
[testenv:py27-django18]
|
|
|
|
basepython=python2.7
|
|
|
|
deps =
|
|
|
|
Django>=1.8,<1.9
|
|
|
|
{[base]deps}
|
|
|
|
|
2015-12-12 12:51:59 +00:00
|
|
|
[testenv:py27-django19]
|
|
|
|
basepython=python2.7
|
|
|
|
deps =
|
|
|
|
Django>=1.9,<1.10
|
|
|
|
{[base]deps}
|
|
|
|
|
2015-06-21 16:56:16 +00:00
|
|
|
[testenv:py34-django17]
|
|
|
|
basepython=python3.4
|
|
|
|
deps =
|
|
|
|
Django>=1.7,<1.8
|
|
|
|
{[base]deps}
|
|
|
|
|
|
|
|
[testenv:py34-django18]
|
|
|
|
basepython=python3.4
|
|
|
|
deps =
|
|
|
|
Django>=1.8,<1.9
|
|
|
|
{[base]deps}
|
|
|
|
|
2015-12-12 12:51:59 +00:00
|
|
|
[testenv:py34-django19]
|
|
|
|
basepython=python3.4
|
|
|
|
deps =
|
|
|
|
Django>=1.9,<1.10
|
|
|
|
{[base]deps}
|
|
|
|
|
2015-06-12 21:57:11 +00:00
|
|
|
[testenv:flake8]
|
|
|
|
basepython=python
|
|
|
|
deps=flake8
|
|
|
|
commands=flake8 {toxinidir}/cas_server
|
|
|
|
|
2016-06-29 21:48:29 +00:00
|
|
|
[testenv:coverage]
|
|
|
|
basepython=python
|
|
|
|
passenv=CODACY_PROJECT_TOKEN
|
|
|
|
deps=
|
|
|
|
-r{toxinidir}/requirements-dev.txt
|
|
|
|
codacy-coverage
|
|
|
|
commands=
|
|
|
|
py.test --cov=cas_server --cov-report xml
|
|
|
|
python-codacy-coverage -r {toxinidir}/coverage.xml
|
|
|
|
|