2015-04-01 17:40:56 +02:00
|
|
|
# Tox (http://tox.testrun.org/) is a tool for running tests
|
|
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
|
|
# and then run "tox" from this directory.
|
|
|
|
|
|
|
|
[tox]
|
2018-05-18 04:26:51 +02:00
|
|
|
envlist = py27, py34, py35, py36, pypy, flake8, pylint-errors, pylint-full, verify-manifest
|
2015-04-01 17:40:56 +02:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
commands = nosetests
|
|
|
|
|
|
|
|
deps =
|
|
|
|
nose
|
2018-01-06 20:22:55 +01:00
|
|
|
-r{toxinidir}/requirements.txt
|
2015-04-01 17:40:56 +02:00
|
|
|
|
|
|
|
[testenv:cover]
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
coverage
|
|
|
|
nosexcover
|
|
|
|
|
2015-04-06 02:29:55 +02:00
|
|
|
[testenv:coveralls]
|
2016-08-12 01:49:26 +02:00
|
|
|
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
|
2015-04-06 02:29:55 +02:00
|
|
|
commands =
|
|
|
|
coveralls
|
|
|
|
deps =
|
|
|
|
coveralls
|
|
|
|
|
2017-05-19 12:58:14 +02:00
|
|
|
[testenv:py27]
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
mock
|
|
|
|
|
2018-05-18 04:26:51 +02:00
|
|
|
[testenv:py36]
|
2017-05-19 12:58:14 +02:00
|
|
|
setenv =
|
|
|
|
PYCRAFT_RUN_INTERNET_TESTS=1
|
|
|
|
commands =
|
|
|
|
nosetests --with-xunit --with-xcoverage --cover-package=minecraft --cover-erase --cover-inclusive --cover-tests --cover-branches --cover-min-percentage=60
|
|
|
|
deps =
|
|
|
|
{[testenv:cover]deps}
|
|
|
|
|
|
|
|
[testenv:pypy]
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
mock
|
|
|
|
|
2015-04-01 17:40:56 +02:00
|
|
|
[testenv:flake8]
|
2018-05-18 04:26:51 +02:00
|
|
|
basepython = python3.6
|
2015-04-01 17:40:56 +02:00
|
|
|
commands =
|
2015-04-06 01:59:08 +02:00
|
|
|
flake8 minecraft tests setup.py start.py bin/generate_travis_yml.py
|
2015-04-01 17:40:56 +02:00
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
flake8
|
|
|
|
|
2015-04-03 00:13:22 +02:00
|
|
|
[testenv:pylint-errors]
|
2018-05-18 04:26:51 +02:00
|
|
|
basepython = python3.6
|
2015-04-03 00:13:22 +02:00
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
pylint
|
2015-04-06 15:47:22 +02:00
|
|
|
commands = pylint minecraft -E
|
2015-04-03 00:13:22 +02:00
|
|
|
|
|
|
|
[testenv:pylint-full]
|
2018-05-18 04:26:51 +02:00
|
|
|
basepython = python3.6
|
2015-04-03 00:13:22 +02:00
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
pylint
|
2015-04-03 01:29:40 +02:00
|
|
|
commands =
|
2015-04-06 15:47:22 +02:00
|
|
|
- pylint minecraft --disable=E
|
2015-04-01 17:40:56 +02:00
|
|
|
|
|
|
|
[testenv:docs]
|
2018-05-18 04:26:51 +02:00
|
|
|
basepython = python3.6
|
2015-04-01 17:40:56 +02:00
|
|
|
deps =
|
|
|
|
{[testenv:cover]deps}
|
|
|
|
sphinx
|
|
|
|
sphinx-rtd-theme
|
|
|
|
commands =
|
|
|
|
{toxinidir}/bin/build_docs
|
2015-04-01 19:50:16 +02:00
|
|
|
|
|
|
|
[testenv:verify-manifest]
|
2018-05-18 04:26:51 +02:00
|
|
|
basepython = python3.6
|
2015-04-01 19:50:16 +02:00
|
|
|
deps =
|
|
|
|
check-manifest
|
|
|
|
commands =
|
2015-04-06 01:38:39 +02:00
|
|
|
check-manifest
|
2017-05-19 12:58:14 +02:00
|
|
|
|