2012-06-19 13:39:23 +09:00
|
|
|
[tox]
|
2020-02-14 06:45:17 +00:00
|
|
|
envlist =
|
|
|
|
py27-pure,
|
|
|
|
{py35,py36,py37,py38}-{c,pure},
|
|
|
|
{pypy,pypy3}-pure,
|
|
|
|
py27-x86,
|
|
|
|
py34-x86,
|
2021-01-27 01:11:32 +00:00
|
|
|
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'
|
2015-01-25 02:24:53 +09:00
|
|
|
c,x86: py.test
|
2015-01-09 04:19:34 +09:00
|
|
|
pure: py.test
|
2021-02-26 12:08:06 +00:00
|
|
|
setenv=
|
|
|
|
pure: MSGPACK_PUREPYTHON=x
|
2015-01-25 02:24:53 +09:00
|
|
|
|
|
|
|
[testenv:py27-x86]
|
|
|
|
basepython=python2.7-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'
|
2015-01-25 02:24:53 +09:00
|
|
|
py.test
|
|
|
|
|
|
|
|
[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'
|
2015-01-25 02:24:53 +09:00
|
|
|
py.test
|