msgpack-python/tox.ini

39 lines
659 B
INI
Raw Normal View History

2012-06-19 13:39:23 +09:00
[tox]
envlist =
{py35,py36,py37,py38}-{c,pure},
{pypy,pypy3}-pure,
py34-x86,
2023-08-31 05:56:24 +02:00
sphinx,
isolated_build = true
2015-01-09 03:41:52 +09:00
2012-06-19 13:39:23 +09:00
[testenv]
deps=
2012-12-29 11:27:28 +09:00
pytest
2012-06-19 13:39:23 +09:00
2015-01-09 04:19:34 +09:00
changedir=test
2015-01-09 03:41:52 +09:00
commands=
2018-11-30 16:05:31 +09:00
c,x86: python -c 'from msgpack import _cmsgpack'
c,x86: py.test
2015-01-09 04:19:34 +09:00
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))'
2018-11-30 16:05:31 +09:00
python -c 'from msgpack import _cmsgpack'
py.test
2023-08-31 05:56:24 +02:00
[testenv:sphinx]
changedir = docs
deps =
sphinx
commands =
sphinx-build -n -v -W --keep-going -b html -d {envtmpdir}/doctrees . {envtmpdir}/html