contextlib2/tox.ini

20 lines
358 B
INI
Raw Normal View History

2016-01-12 08:51:30 +00:00
[tox]
2016-04-17 09:06:48 +00:00
envlist = py26, py27, pypy, py33, py34, py35, py36, pypy3
skip_missing_interpreters = True
2016-01-12 08:51:30 +00:00
[testenv]
commands = {envpython} test_contextlib2.py
2016-04-17 09:06:48 +00:00
[testenv:py26]
deps = unittest2
2016-01-12 08:51:30 +00:00
[testenv:py27]
deps = unittest2
[testenv:pypy]
deps = unittest2
2016-04-17 09:06:48 +00:00
[testenv:pypy3]
# Known incompatibility: https://bitbucket.org/pypy/pypy/issues/1903
ignore_outcome = True