2015-06-12 21:57:11 +00:00
|
|
|
[tox]
|
|
|
|
envlist=
|
2016-06-29 22:37:00 +00:00
|
|
|
flake8,
|
2016-07-01 00:38:36 +00:00
|
|
|
check_rst,
|
2015-06-12 21:57:11 +00:00
|
|
|
py27-django17,
|
|
|
|
py27-django18,
|
2015-12-12 12:51:59 +00:00
|
|
|
py27-django19,
|
2016-08-25 11:02:09 +00:00
|
|
|
py27-django110,
|
2015-06-21 16:56:16 +00:00
|
|
|
py34-django17,
|
|
|
|
py34-django18,
|
2015-12-12 12:51:59 +00:00
|
|
|
py34-django19,
|
2016-08-25 11:02:09 +00:00
|
|
|
py34-django110,
|
2016-07-23 16:50:47 +00:00
|
|
|
py35-django18,
|
|
|
|
py35-django19,
|
2016-08-25 11:02:09 +00:00
|
|
|
py35-django110,
|
2015-06-12 21:57:11 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length=100
|
|
|
|
exclude=migrations
|
|
|
|
|
|
|
|
[base]
|
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements-dev.txt
|
|
|
|
|
2016-07-03 17:46:52 +00:00
|
|
|
[post_cmd]
|
|
|
|
commands=
|
|
|
|
find {toxworkdir} -name '*.pyc' -delete
|
|
|
|
mkdir -p {toxinidir}/tox_logs/
|
|
|
|
bash -c "mv {toxworkdir}/{envname}/log/* {toxinidir}/tox_logs/"
|
|
|
|
whitelist_externals=
|
|
|
|
find
|
|
|
|
bash
|
|
|
|
mkdir
|
|
|
|
|
2015-06-12 21:57:11 +00:00
|
|
|
[testenv]
|
2016-07-03 17:46:52 +00:00
|
|
|
commands=
|
2016-07-29 11:56:23 +00:00
|
|
|
py.test -rw {posargs:cas_server/tests/}
|
2016-07-03 17:46:52 +00:00
|
|
|
{[post_cmd]commands}
|
|
|
|
whitelist_externals={[post_cmd]whitelist_externals}
|
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}
|
|
|
|
|
2016-08-25 11:02:09 +00:00
|
|
|
[testenv:py27-django110]
|
|
|
|
basepython=python2.7
|
|
|
|
deps =
|
|
|
|
Django>=1.10,<1.11
|
|
|
|
{[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}
|
|
|
|
|
2016-08-25 11:02:09 +00:00
|
|
|
[testenv:py34-django110]
|
|
|
|
basepython=python3.4
|
|
|
|
deps =
|
|
|
|
Django>=1.10,<1.11
|
|
|
|
{[base]deps}
|
|
|
|
|
2016-07-23 16:50:47 +00:00
|
|
|
[testenv:py35-django18]
|
|
|
|
basepython=python3.5
|
|
|
|
deps =
|
|
|
|
Django>=1.8,<1.9
|
|
|
|
{[base]deps}
|
|
|
|
|
|
|
|
[testenv:py35-django19]
|
|
|
|
basepython=python3.5
|
|
|
|
deps =
|
|
|
|
Django>=1.9,<1.10
|
|
|
|
{[base]deps}
|
|
|
|
|
2016-08-25 11:02:09 +00:00
|
|
|
[testenv:py35-django110]
|
|
|
|
basepython=python3.5
|
|
|
|
deps =
|
|
|
|
Django>=1.10,<1.11
|
|
|
|
{[base]deps}
|
|
|
|
|
2016-07-23 16:50:47 +00:00
|
|
|
|
2015-06-12 21:57:11 +00:00
|
|
|
[testenv:flake8]
|
|
|
|
basepython=python
|
|
|
|
deps=flake8
|
2016-07-03 17:46:52 +00:00
|
|
|
skip_install=True
|
|
|
|
commands=
|
|
|
|
flake8 {toxinidir}/cas_server
|
|
|
|
{[post_cmd]commands}
|
|
|
|
whitelist_externals={[post_cmd]whitelist_externals}
|
2015-06-12 21:57:11 +00:00
|
|
|
|
2016-07-01 00:38:36 +00:00
|
|
|
[testenv:check_rst]
|
|
|
|
basepython=python
|
|
|
|
deps=
|
|
|
|
docutils
|
|
|
|
Pygments
|
2016-07-03 17:46:52 +00:00
|
|
|
skip_install=True
|
|
|
|
commands=
|
|
|
|
rst2html.py --strict {toxinidir}/README.rst /dev/null
|
2016-08-23 10:57:42 +00:00
|
|
|
rst2html.py --halt=warning {toxinidir}/CHANGELOG.rst /dev/null
|
2016-07-03 17:46:52 +00:00
|
|
|
{[post_cmd]commands}
|
|
|
|
whitelist_externals={[post_cmd]whitelist_externals}
|
2016-07-01 00:38:36 +00:00
|
|
|
|
2016-06-29 21:48:29 +00:00
|
|
|
[testenv:coverage]
|
|
|
|
basepython=python
|
2016-09-09 12:52:52 +00:00
|
|
|
passenv=
|
|
|
|
COVERAGE_TOKEN
|
|
|
|
CI_BUILD_REF_NAME
|
|
|
|
TRAVIS_BRANCH
|
|
|
|
TRAVIS_PULL_REQUEST
|
2016-06-29 21:48:29 +00:00
|
|
|
deps=
|
2016-07-05 11:09:16 +00:00
|
|
|
-r{toxinidir}/requirements.txt
|
2016-06-29 21:48:29 +00:00
|
|
|
-r{toxinidir}/requirements-dev.txt
|
2016-07-03 17:46:52 +00:00
|
|
|
skip_install=True
|
2016-06-29 21:48:29 +00:00
|
|
|
commands=
|
2016-09-09 12:25:43 +00:00
|
|
|
py.test --cov=cas_server --cov-report term --cov-report html
|
2016-09-09 12:52:52 +00:00
|
|
|
{toxinidir}/.update_coverage "{toxinidir}" "django-cas-server"
|
2016-07-03 17:46:52 +00:00
|
|
|
{[post_cmd]commands}
|
|
|
|
whitelist_externals={[post_cmd]whitelist_externals}
|