Skip to content

Commit

Permalink
There's got to be a better way to do this
Browse files Browse the repository at this point in the history
  • Loading branch information
kurin committed Aug 6, 2013
1 parent 8af5fa9 commit 1653f5a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
[tox]
envlist = py26,py27

[testenv:py26]
commands=
pip install -r requirements.txt
py.test --cov .tox/py26/lib/python2.6/site-packages/raft tests/unit

[testenv:py27]
commands=
pip install -r requirements.txt
py.test --cov .tox/py27/lib/python2.7/site-packages/raft tests/unit

[testenv]
deps=
pytest
pytest-cov
mock
commands=
pip install -r requirements.txt
py.test --cov raft tests/unit

0 comments on commit 1653f5a

Please sign in to comment.