diff options
| author | INADA Naoki <methane@users.noreply.github.com> | 2015-01-25 03:34:25 +0900 |
|---|---|---|
| committer | INADA Naoki <methane@users.noreply.github.com> | 2015-01-25 03:34:25 +0900 |
| commit | ec5dff113eaf0b60c546ee997047f87fb5d7e5fc (patch) | |
| tree | 8069223d23b98bfac8af3563e3204e8306fec1b0 /tox.ini | |
| parent | c43fb48724049dc35c34fd389091e384dec46bb8 (diff) | |
| parent | 2985f4d8651982b07e2cfa7037e7a8c3530a127b (diff) | |
| download | msgpack-python-ec5dff113eaf0b60c546ee997047f87fb5d7e5fc.tar.gz | |
Merge pull request #105 from msgpack/max-xxx-size
Add max_<type>_len option to unpacker. (fixes #97).
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 29 |
1 files changed, 26 insertions, 3 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = {py26,py27,py32,py33,py34}-{c,pure},{pypy,pypy3}-pure +envlist = {py26,py27,py32,py33,py34}-{c,pure},{pypy,pypy3}-pure,py27-x86,py34-x86 [variants:pure] setenv= @@ -11,6 +11,29 @@ deps= changedir=test commands= - c: python -c 'from msgpack import _packer, _unpacker' - c: py.test + c,x86: python -c 'from msgpack import _packer, _unpacker' + c,x86: py.test pure: py.test + +[testenv:py27-x86] +basepython=python2.7-x86 +deps= + pytest + +changedir=test +commands= + python -c 'import sys; print(hex(sys.maxsize))' + python -c 'from msgpack import _packer, _unpacker' + py.test + +[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 _packer, _unpacker' + py.test + |
