File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ before_install:
18
18
19
19
install :
20
20
- . ./scripts/create_testenv.sh
21
- - pip install coveralls travis-sphinx==2.0.0
21
+ - pip install coveralls
22
22
23
23
env :
24
24
- FLOATX='float32' TESTCMD="--durations=10 --ignore=pymc3/tests/test_examples.py --cov-append --ignore=pymc3/tests/test_distributions_random.py --ignore=pymc3/tests/test_variational_inference.py --ignore=pymc3/tests/test_shared.py --ignore=pymc3/tests/test_smc.py --ignore=pymc3/tests/test_updates.py --ignore=pymc3/tests/test_posteriors.py --ignore=pymc3/tests/test_sampling.py"
27
27
- FLOATX='float32' TESTCMD="--durations=10 --cov-append pymc3/tests/test_variational_inference.py pymc3/tests/test_updates.py"
28
28
- FLOATX='float64' TESTCMD="--durations=10 --cov-append --ignore=pymc3/tests/test_examples.py --ignore=pymc3/tests/test_distributions_random.py --ignore=pymc3/tests/test_variational_inference.py --ignore=pymc3/tests/test_shared.py --ignore=pymc3/tests/test_smc.py --ignore=pymc3/tests/test_updates.py --ignore=pymc3/tests/test_posteriors.py --ignore=pymc3/tests/test_sampling.py"
29
29
- FLOATX='float64' TESTCMD="--durations=10 --cov-append pymc3/tests/test_distributions_random.py pymc3/tests/test_shared.py pymc3/tests/test_smc.py pymc3/tests/test_sampling.py"
30
- - FLOATX='float64' BUILD_DOCS="true" TESTCMD="--durations=10 --cov-append pymc3/tests/test_examples.py pymc3/tests/test_posteriors.py"
30
+ - FLOATX='float64' TESTCMD="--durations=10 --cov-append pymc3/tests/test_examples.py pymc3/tests/test_posteriors.py"
31
31
- FLOATX='float64' TESTCMD="--durations=10 --cov-append pymc3/tests/test_variational_inference.py pymc3/tests/test_updates.py"
32
32
33
33
script :
34
34
- . ./scripts/test.sh $TESTCMD
35
35
- . ./scripts/confirm_mpl_optional.sh
36
36
37
37
after_success :
38
- - if [[ "$BUILD_DOCS" == "true" ]]; then travis-sphinx deploy -c "docs.pymc.io"; fi
39
38
- coveralls
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
- if [[ " $BUILD_DOCS " == " true" ]]; then
6
- travis-sphinx build -n -s docs/source
7
- fi
8
-
9
5
if [[ " $RUN_PYLINT " == " true" ]]; then
10
6
. ./scripts/lint.sh
11
7
fi
You can’t perform that action at this time.
0 commit comments