Skip to content

Commit

Permalink
Merge pull request #5 from spoqa/tox
Browse files Browse the repository at this point in the history
Use tox to test for multiple Python versions
  • Loading branch information
cpburnz committed Sep 21, 2014
2 parents dc851af + e7dbf2b commit 3e0eaaf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ lib
lib64
__pycache__
/MANIFEST
.tox

# Installer logs.
pip-log.txt
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@
],
license=__license__,
packages=find_packages(),
test_suite='pathspec.tests.test_gitignore.GitIgnoreTest',
)
5 changes: 5 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[tox]
envlist = py27, py33, py34, pypy

[testenv]
commands = python setup.py test

0 comments on commit 3e0eaaf

Please sign in to comment.