Skip to content

Commit

Permalink
WIP: PyTest 4 support (issue #34)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolever committed Feb 5, 2019
1 parent 4cd3b99 commit e29df98
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
[tox]
envlist=py{27,35,36,37,py}-{nose,nose2,pytest,unit,unit2}
envlist=py{27,35,36,37,py}-{nose,nose2,pytest2,pytest3,pytest4,unit,unit2}
[testenv]
deps=
nose
mock
nose2: nose2
pytest: pytest>=2,<3
pytest2: pytest>=2,<3
pytest3: pytest>=3,<4
pytest4: pytest>=4,<5
unit2: unittest2
commands=
nose: nosetests
nose2: nose2
pytest: py.test parameterized/test.py
pytest2: py.test parameterized/test.py
pytest3: py.test parameterized/test.py
pytest4: py.test parameterized/test.py
unit: python -m unittest parameterized.test
unit2: unit2 parameterized.test

0 comments on commit e29df98

Please sign in to comment.