forked from ammaraskar/pyCraft
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
87 lines (73 loc) · 1.8 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# 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]
envlist = py35, py36, py37, py38, py39, pypy, flake8, pylint-errors, pylint-full, verify-manifest
[testenv]
commands = nosetests --with-timer
install_command = pip install --prefer-binary {opts} {packages}
deps =
nose
nose-timer
-r{toxinidir}/requirements.txt
[testenv:cover]
deps =
{[testenv]deps}
coverage
nosexcover
[testenv:coveralls]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
commands =
coveralls
deps =
coveralls
[testenv:py39]
setenv =
PYCRAFT_RUN_INTERNET_TESTS=1
commands =
{[testenv]commands} --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
[testenv:flake8]
basepython = python3.9
commands =
flake8 minecraft tests setup.py start.py bin/generate_travis_yml.py
deps =
{[testenv]deps}
flake8
[flake8]
per-file-ignores =
*/clientbound/play/spawn_object_packet.py:E221,E222,E271,E272,E201
minecraft/networking/packets/__init__.py:F401
[testenv:pylint-errors]
basepython = python3.9
deps =
{[testenv]deps}
pylint
commands = pylint minecraft -E
[testenv:pylint-full]
basepython = python3.9
deps =
{[testenv]deps}
pylint
commands =
- pylint minecraft --disable=E
[testenv:docs]
basepython = python3.9
deps =
{[testenv:cover]deps}
sphinx
sphinx-rtd-theme
commands =
{toxinidir}/bin/build_docs
[testenv:verify-manifest]
basepython = python3.9
deps =
check-manifest
commands =
check-manifest