Skip to content

Commit

Permalink
Tox for cross Python-version testing (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-werner authored and hameerabbasi committed Jan 15, 2018
1 parent b8ad000 commit 013dbd1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
install_requires=list(open('requirements.txt').read().strip().split('\n')),
extras_require={
'tests': [
'tox',
'pytest',
'pytest-cov',
'pytest-flake8',
Expand Down
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tox]
envlist = py27,py36
[testenv]
commands=
py.test {posargs}
extras=
docs
tests

0 comments on commit 013dbd1

Please sign in to comment.