diff options
author | Doug Hellmann <doug@doughellmann.com> | 2013-09-16 17:26:28 -0500 |
---|---|---|
committer | Doug Hellmann <doug@doughellmann.com> | 2013-09-16 17:26:28 -0500 |
commit | 4e22a2a25e9b09574de12dc20b9207e15e58d78d (patch) | |
tree | 3497ea9e2c7b4c4e5ff6d8208bfe1fd2a968543b | |
parent | 0905c339df9f0a4a203bf50b73434629f3114e95 (diff) | |
download | cmd2-git-4e22a2a25e9b09574de12dc20b9207e15e58d78d.tar.gz |
Make sure we use the python interpreter from the virtualenv created by tox to run the tests.
-rw-r--r-- | tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ [tox] -envlist = py25,py26,py27,py31,jython +envlist = py25,py26,py27,py31,py33,jython [testenv] deps=pyparsing commands= - python cmd2.py - python example/example.py --test example/exampleSession.txt
\ No newline at end of file + {envpython} cmd2.py + {envpython} example/example.py --test example/exampleSession.txt
\ No newline at end of file |