Skip to content

Commit

Permalink
Run tests under PURE_PYTHON for 2.7 and 3.4, ruling out a PyPy implem…
Browse files Browse the repository at this point in the history
…entation issue.
  • Loading branch information
jamadden committed Jun 2, 2015
1 parent f6c4e9d commit 067cb14
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ env:
- TOXENV=py26
- TOXENV=py26min
- TOXENV=py27
- TOXENV=py27-pure
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=py34-pure
- TOXENV=pypy
- TOXENV=pypy3
- TOXENV=coverage
Expand Down
14 changes: 13 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py26,py27,py32,jython,pypy,coverage,docs
py26,py26min,py27,pypy,pypy3,py32,py33,py34,coverage,docs
py26,py26min,py27,py27-pure,pypy,pypy3,py32,py34-pure,py33,py34,coverage,docs

[mindeps]
deps =
Expand All @@ -29,6 +29,18 @@ deps =
commands =
python setup.py -q test -q

[testenv:py34-pure]
basepython =
python3.4
setenv =
PURE_PYTHON = 1

[testenv:py27-pure]
basepython =
python3.4
setenv =
PURE_PYTHON = 1

[testenv:py26min]
usedevelop = true
basepython =
Expand Down

0 comments on commit 067cb14

Please sign in to comment.