summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Bienkowski <hexagonrecursion@gmail.com>2021-02-26 12:08:06 +0000
committerGitHub <noreply@github.com>2021-02-26 21:08:06 +0900
commit4ace82f1087ffa1ca3c44a27c7dd3338739efd0a (patch)
tree5f53d9de62c092a65c67699bec30d32f99ac334c
parent38357b928a2452d0889d80f0a2a721fa66f94c9a (diff)
downloadmsgpack-python-4ace82f1087ffa1ca3c44a27c7dd3338739efd0a.tar.gz
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
-rw-r--r--tox.ini6
1 files changed, 2 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index ace1ba9..29c256d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,10 +7,6 @@ envlist =
py34-x86,
isolated_build = true
-[variants:pure]
-setenv=
- MSGPACK_PUREPYTHON=x
-
[testenv]
deps=
pytest
@@ -20,6 +16,8 @@ commands=
c,x86: python -c 'from msgpack import _cmsgpack'
c,x86: py.test
pure: py.test
+setenv=
+ pure: MSGPACK_PUREPYTHON=x
[testenv:py27-x86]
basepython=python2.7-x86