diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-03 17:31:12 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-03 17:32:09 -0700 |
commit | 9d19772089bedeefd33d8a8cfef8aac00998f2c7 (patch) | |
tree | 5dc2da03f00aa1d491688850a9e7c382b971a9a4 /tox.ini | |
parent | a5d71080efc63a174d77614c9d816a7d86423971 (diff) | |
download | python-heatclient-9d19772089bedeefd33d8a8cfef8aac00998f2c7.tar.gz |
Added support for running the tests under PyPy with tox
This is a precursor to having them run under check and gate.
This also fixes a single test which fails on PyPy, the test failes at
because it assumes a ``dict`` has a particular order for its keys when
it is printed out, on PyPy dicts have a different order sometimes, the
exact ordering is not a guarnteed property of Python.
Change-Id: Ie86726a0221e5e9aa68f7303d8ca8c7acd878f65
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,pep8 +envlist = py26,py27,pypy,pep8 [testenv] setenv = VIRTUAL_ENV={envdir} |