summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-07-01 16:25:00 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-07-01 16:25:00 +0200
commitc3869f9866e3507bbb6767aeb5bc02ba41a98d60 (patch)
treed901c684ffdb978a02dd83a728e609e6a07c8b97 /tox.ini
parent4eed1d5eef4f20ea32ee7af1f01d02ffcc7e229c (diff)
downloadruamel.yaml-c3869f9866e3507bbb6767aeb5bc02ba41a98d60.tar.gz
fix regression caused by PR 270.15.42
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 6 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 3244c1e..9057c82 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,14 +1,19 @@
[tox]
-envlist = cs,py36,py27,py35,py34,pypy
+toxworkdir = /data1/DATA/tox/ruamel.yaml
+envlist = cs,py36,py27,py35,py34,pypy,py27m
[testenv]
commands =
+ python -c "import sys, sysconfig; print('%s ucs-%s' % (sys.version.replace('\n', ' '), sysconfig.get_config_var('Py_UNICODE_SIZE')))"
/bin/bash -c 'pytest _test/test_*.py'
deps =
pytest
flake8==2.5.5
ruamel.std.pathlib
+[testenv:py27m]
+basepython = /opt/python/2.7.15m/bin/python
+
[testenv:cs]
basepython = python3.6
commands =