1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# 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 = py26, py27, py32, py33
[testenv]
deps =
cython
numpy >= 1.6.1
nose
pytz >= 2011k
six
# cd to anything but the default {toxinidir} which
# contains the pandas subdirectory and confuses
# nose away from the fresh install in site-packages
changedir = {envdir}
commands =
# TODO: --exe because of GH #761
{envbindir}/nosetests --exe pandas -A "not network"
# cleanup the temp. build dir created by the tox build
# /bin/rm -rf {toxinidir}/build
# quietly rollback the install.
# Note this line will only be reached if the
# previous lines succeed (in particular, the tests),
# but an uninstall is really only required when
# files are removed from the source tree, in which case,
# stale versions of files will will remain in the venv
# until the next time uninstall is run.
#
# tox should provide a preinstall-commands hook.
pip uninstall pandas -qy
[testenv:py26]
[testenv:py27]
[testenv:py32]
[testenv:py33]
|