Fix tox.ini (#465)

There is no such thing as [variants] in the tox syntax. This resulted
in MSGPACK_PUREPYTHON being unset in the "pure" test environments
This commit is contained in:
Andrey Bienkowski 2021-02-26 12:08:06 +00:00 committed by GitHub
parent 38357b928a
commit 4ace82f108
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,10 +7,6 @@ envlist =
py34-x86, py34-x86,
isolated_build = true isolated_build = true
[variants:pure]
setenv=
MSGPACK_PUREPYTHON=x
[testenv] [testenv]
deps= deps=
pytest pytest
@ -20,6 +16,8 @@ commands=
c,x86: python -c 'from msgpack import _cmsgpack' c,x86: python -c 'from msgpack import _cmsgpack'
c,x86: py.test c,x86: py.test
pure: py.test pure: py.test
setenv=
pure: MSGPACK_PUREPYTHON=x
[testenv:py27-x86] [testenv:py27-x86]
basepython=python2.7-x86 basepython=python2.7-x86