Merge pull request #119 from tkf/tox

Add tox setup to run tests
This commit is contained in:
David Halter
2013-01-30 13:08:01 -08:00
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@@ -2,6 +2,7 @@
*.swp *.swp
*.swo *.swo
.ropeproject .ropeproject
.tox
*.pyc *.pyc
/build/ /build/
/docs/_build/ /docs/_build/

View File

@@ -1,5 +1,6 @@
include README.rst include README.rst
include LICENSE.txt include LICENSE.txt
include AUTHORS.txt include AUTHORS.txt
include VERSION
include jedi/mixin/*.pym include jedi/mixin/*.pym
recursive-exclude * *.pyc recursive-exclude * *.pyc

8
tox.ini Normal file
View File

@@ -0,0 +1,8 @@
[tox]
envlist = py25, py26, py27, py32
[testenv]
commands =
python regression.py
python run.py
python refactor.py
changedir = test