Skip to content

Commit

Permalink
Add support for tox (http://tox.testrun.org/)
Browse files Browse the repository at this point in the history
  • Loading branch information
msabramo authored and wesm committed Jun 4, 2012
1 parent 49fc73b commit 0762db9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ doc/build/html/index.html
scikits
.coverage
pandas.egg-info
*\#*\#
*\#*\#
.tox
17 changes: 17 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
envlist = py25, py26, py27, py31, py32

[testenv]
commands =
{envpython} setup.py clean
{envpython} setup.py build_ext --inplace
nosetests pandas
deps =
cython
numpy >= 1.6.1
nose

0 comments on commit 0762db9

Please sign in to comment.