File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,19 @@ before_install:
15
15
install :
16
16
- conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION
17
17
- source activate testenv
18
- - conda install --yes $DEPS
18
+ - conda install --yes ipython pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels
19
+
19
20
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then conda install --yes mock; fi
20
21
- pip install --no-deps numdifftools
21
22
- pip install git+https://github.com/Theano/Theano.git
22
23
- pip install git+https://github.com/mahmoudimus/nose-timer.git
23
24
- python setup.py build_ext --inplace
24
25
25
26
env :
26
- - DEPS="ipython pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels"
27
-
27
+ - TESTCMD=" -vv --with-timer -e test_examples -e test_distributions"
28
+ - TESTCMD=" -vv --with-timer pymc3.tests.test_distributions"
29
+ - TESTCMD=" -vv --with-timer pymc3.tests.test_examples:test_examples0"
30
+ - TESTCMD=" -vv --with-timer pymc3.tests.test_examples:test_examples1"
31
+ - TESTCMD=" -vv --with-timer pymc3.tests.test_examples:test_examples2"
28
32
script :
29
- - nosetests
33
+ - nosetests $TESTCMD
You can’t perform that action at this time.
0 commit comments