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]
|
2020-08-17 06:41:06 +02:00
|
|
|
envlist = py35, py36, py37, py38, pypy, flake8, pylint-errors, pylint-full, verify-manifest
|
2015-04-01 17:40:56 +02:00
|
|
|
|
|
|
|
[testenv]
|
2019-05-14 18:41:58 +02:00
|
|
|
commands = nosetests --with-timer
|
2015-04-01 17:40:56 +02:00
|
|
|
|
|
|
|
deps =
|
|
|
|
nose
|
2019-05-14 18:41:58 +02:00
|
|
|
nose-timer
|
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
|
|
|
|
|
2020-01-08 15:54:45 +01:00
|
|
|
[testenv:py38]
|
2017-05-19 12:58:14 +02:00
|
|
|
setenv =
|
|
|
|
PYCRAFT_RUN_INTERNET_TESTS=1
|
|
|
|
commands =
|
2019-05-14 18:41:58 +02:00
|
|
|
{[testenv]commands} --with-xunit --with-xcoverage --cover-package=minecraft --cover-erase --cover-inclusive --cover-tests --cover-branches --cover-min-percentage=60
|
2017-05-19 12:58:14 +02:00
|
|
|
deps =
|
|
|
|
{[testenv:cover]deps}
|
|
|
|
|
|
|
|
[testenv:pypy]
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
mock
|
|
|
|
|
2015-04-01 17:40:56 +02:00
|
|
|
[testenv:flake8]
|
2020-01-08 15:54:45 +01:00
|
|
|
basepython = python3.8
|
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
|
|
|
|
|
2019-05-11 08:43:08 +02:00
|
|
|
[flake8]
|
|
|
|
per-file-ignores =
|
Fix: non-monotonic protocol versions are not correctly handled
After 1.16.3, Mojang started publishing snapshot, pre-release and release
candidate versions of Minecraft with protocol version numbers of the form
`(1 << 30) | n' where 'n' is a small non-negative integer increasing with each
such version; the release versions continued to use the old format. For
example, these are the last 8 published Minecraft versions as of this commit:
release 1.16.3 uses protocol version 753
pre-release 1.16.4-pre1 uses protocol version 1073741825 == (1 << 30) | 1
pre-release 1.16.4-pre2 uses protocol version 1073741826 == (1 << 30) | 2
release candidate 1.16.4-rc1 uses protocol version 1073741827 == (1 << 30) | 3
release 1.16.4 uses protocol version 754
snapshot 20w45a uses protocol version 1073741829 == (1 << 30) | 5
snapshot 20w46a uses protocol version 1073741830 == (1 << 30) | 6
snapshot 20w48a uses protocol version 1073741831 == (1 << 30) | 7
This means that protocol versions no longer increase monotonically with respect
to publication history, a property that was assumed to hold in much of
pyCraft's code relating to support of multiple protocol versions. This commit
rectifies the issue by replacing any comparison of protocol versions by their
numerical value with a comparison based on their publication time.
Newly defined is the dictionary `minecraft.PROTOCOL_VERSION_INDICES', which
maps each known protocol version to its index in the protocol chronology. As
such, the bound method `minecraft.PROTOCOL_VERSION_INDICES.get` can be used as
a key function for the built-in `sorted`, `min` and `max` functions to collate
protocol versions chronologically.
Two utility functions are provided for direct comparison of protocol versions:
`minecraft.utility.protocol_earlier` and
`minecraft.utility.protocol_earlier_eq`.
Additionally, four methods are added to the `ConnectionContext` type to ease
the most common cases where the protocol of a given context must be compared to
a given version number:
`minecraft.connection.ConnectionContext.protocol_earlier`,
`minecraft.connection.ConnectionContext.protocol_earlier_eq`,
`minecraft.connection.ConnectionContext.protocol_later` and
`minecraft.connection.ConnectionContext.protocol_later_eq`.
2020-12-02 14:30:40 +01:00
|
|
|
*/clientbound/play/spawn_object_packet.py:E221,E222,E271,E272,E201
|
|
|
|
minecraft/networking/packets/__init__.py:F401
|
2019-05-11 08:43:08 +02:00
|
|
|
|
2015-04-03 00:13:22 +02:00
|
|
|
[testenv:pylint-errors]
|
2020-01-08 15:54:45 +01:00
|
|
|
basepython = python3.8
|
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]
|
2020-01-08 15:54:45 +01:00
|
|
|
basepython = python3.8
|
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]
|
2020-01-08 15:54:45 +01:00
|
|
|
basepython = python3.8
|
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]
|
2020-01-08 15:54:45 +01:00
|
|
|
basepython = python3.8
|
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
|
|
|
|