File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,15 @@ before_install:
14
14
15
15
install :
16
16
- . ./scripts/create_testenv.sh
17
+ - pip install coveralls
17
18
18
19
env :
19
- - TESTCMD=" -vv --with-timer -e test_examples -e test_distributions" PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
20
- - TESTCMD=" -vv --with-timer pymc3.tests.test_distributions" PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
21
- - TESTCMD=" -vv --with-timer pymc3.tests.test_distributions_random" PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
20
+ - TESTCMD=" -vv --with-timer --with-coverage --cover-package=pymc3 - e test_examples -e test_distributions" PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
21
+ - TESTCMD=" -vv --with-timer --with-coverage --cover-package=pymc3 pymc3.tests.test_distributions" PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
22
+ - TESTCMD=" -vv --with-timer --with-coverage --cover-package=pymc3 pymc3.tests.test_distributions_random" PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
22
23
23
24
script :
24
25
- . ./scripts/test.sh $TESTCMD
25
26
26
27
after_success :
27
- - bash <(curl -s https://codecov.io/bash)
28
+ - coveralls
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ conda create -n testenv --yes pip python=${PYTHON_VERSION}
8
8
9
9
source activate testenv
10
10
11
- conda install --yes pyqt=4.11.4 jupyter pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels joblib
11
+ conda install --yes pyqt=4.11.4 jupyter pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels joblib coverage
12
12
if [ ${PYTHON_VERSION} == " 2.7" ]; then
13
13
conda install --yes mock enum34;
14
14
fi
You can’t perform that action at this time.
0 commit comments