This repository was archived by the owner on Mar 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,19 @@ compiler:
13
13
- clang
14
14
- gcc
15
15
env :
16
- - TRAVIS_PYTHON_VERSION=2.7
17
- - TRAVIS_PYTHON_VERSION=3.3
18
- - TRAVIS_PYTHON_VERSION=3.4
19
- - TRAVIS_PYTHON_VERSION=3.5
20
- - TRAVIS_PYTHON_VERSION=3.6
16
+ - TRAVIS_PYTHON_VERSION=2.7 TESTS_EXCLUDE_RE='^test_[a-p].*\.py'
17
+ - TRAVIS_PYTHON_VERSION=3.4 TESTS_EXCLUDE_RE='^test_[a-p].*\.py'
18
+ - TRAVIS_PYTHON_VERSION=3.5 TESTS_EXCLUDE_RE='^test_[a-p].*\.py'
19
+ - TRAVIS_PYTHON_VERSION=3.6 TESTS_EXCLUDE_RE='^test_[a-p].*\.py'
20
+ - TRAVIS_PYTHON_VERSION=2.7 TESTS_EXCLUDE_RE='^test_[^a-p].*\.py'
21
+ - TRAVIS_PYTHON_VERSION=3.4 TESTS_EXCLUDE_RE='^test_[^a-p].*\.py'
22
+ - TRAVIS_PYTHON_VERSION=3.5 TESTS_EXCLUDE_RE='^test_[^a-p].*\.py'
23
+ - TRAVIS_PYTHON_VERSION=3.6 TESTS_EXCLUDE_RE='^test_[^a-p].*\.py'
21
24
notifications :
22
25
email :
23
26
recipients :
24
27
- stan-buildbot@googlegroups.com
25
28
on_success : change
26
29
on_failure : always
27
30
install : source continuous_integration/install.sh
28
- script : bash continuous_integration/test_script.sh
31
+ script : bash continuous_integration/test_script.sh --exclude="$TESTS_EXCLUDE_RE"
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ SKLEARN_SKIP_NETWORK_TESTS=1
20
20
export PYSTAN_SKIP_PLOT_TESTS=1
21
21
22
22
if [[ $TRAVIS_OS_NAME == ' linux' ]]; then
23
- DISPLAY=:99.0 JOBLIB_MULTIPROCESSING=0 nosetests -w /tmp pystan
23
+ DISPLAY=:99.0 JOBLIB_MULTIPROCESSING=0 nosetests -w /tmp pystan $@
24
24
fi
25
25
26
26
if [[ $TRAVIS_OS_NAME == ' osx' ]]; then
27
27
# skip DISPLAY setting and hope for the best
28
- JOBLIB_MULTIPROCESSING=0 nosetests -w /tmp pystan
28
+ JOBLIB_MULTIPROCESSING=0 nosetests -w /tmp pystan $@
29
29
fi
You can’t perform that action at this time.
0 commit comments