forked from stan-dev/pystan2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
31 lines (27 loc) · 1 KB
/
tox.ini
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
# 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 = py27, py33
[testenv]
deps =
cython >= 0.19
numpy >= 1.7.1
nose
# cd to anything but the default {toxinidir} which
# contains the pystan subdirectory and confuses
# nose away from the fresh install in site-packages
changedir = {envdir}
commands =
{envbindir}/nosetests --exe pystan.tests.test_basic_matrix
# 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 pystan -qy