Skip to content

Commit

Permalink
Use tox to test for multiple Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Sep 14, 2014
1 parent e0a65be commit c7b257a
Show file tree
Hide file tree
Showing 3 changed files with 8 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',
)
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist = py27, py33, py34, pypy

[testenv]
commands =
python setup.py test

0 comments on commit c7b257a

Please sign in to comment.