mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 12:03:15 +00:00
38 lines
659 B
INI
38 lines
659 B
INI
[tox]
|
|
envlist =
|
|
{py35,py36,py37,py38}-{c,pure},
|
|
{pypy,pypy3}-pure,
|
|
py34-x86,
|
|
sphinx,
|
|
isolated_build = true
|
|
|
|
[testenv]
|
|
deps=
|
|
pytest
|
|
|
|
changedir=test
|
|
commands=
|
|
c,x86: python -c 'from msgpack import _cmsgpack'
|
|
c,x86: py.test
|
|
pure: py.test
|
|
setenv=
|
|
pure: MSGPACK_PUREPYTHON=x
|
|
|
|
[testenv:py34-x86]
|
|
basepython=python3.4-x86
|
|
deps=
|
|
pytest
|
|
|
|
changedir=test
|
|
commands=
|
|
python -c 'import sys; print(hex(sys.maxsize))'
|
|
python -c 'from msgpack import _cmsgpack'
|
|
py.test
|
|
|
|
|
|
[testenv:sphinx]
|
|
changedir = docs
|
|
deps =
|
|
sphinx
|
|
commands =
|
|
sphinx-build -n -v -W --keep-going -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
|