Skip to content

Commit 902f1ca

Browse files
temp: let other fail
1 parent f216c8e commit 902f1ca

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ git:
1818

1919
matrix:
2020
fast_finish: true
21+
fail_fast: true
2122
include:
2223
- python: 2.6
2324
env:
@@ -105,10 +106,9 @@ matrix:
105106
- python: 2.7
106107
env:
107108
- JOB_NAME: "doc_build"
108-
- FULL_DEPS=true
109+
- JOB_TAG=_DOC_BUILD
109110
- BUILD_TYPE=conda
110111
- DOC_BUILD=true # if rst files were changed, build docs in parallel with tests
111-
- JOB_TAG=_DOC_BUILD
112112
allow_failures:
113113
- python: 3.3
114114
env:
@@ -159,10 +159,9 @@ matrix:
159159
- python: 2.7
160160
env:
161161
- JOB_NAME: "doc_build"
162-
- FULL_DEPS=true
162+
- JOB_TAG=_DOC_BUILD
163163
- BUILD_TYPE=conda
164164
- DOC_BUILD=true
165-
- JOB_TAG=_DOC_BUILD
166165

167166
before_install:
168167
- echo "before_install"

ci/before_install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ echo "inside $0"
1111
sudo apt-get update $APT_ARGS # run apt-get update for all versions
1212

1313
true # never fail because bad things happened here
14+
15+
if [ x"$DOC_BUILD" == x"" ]; then
16+
exit 1
17+
fi

0 commit comments

Comments
 (0)