Skip to content

Commit c577c19

Browse files
committed
CI: only print skipped if not on doc-build
1 parent 7a42240 commit c577c19

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,10 @@ after_script:
196196
- echo "after_script start"
197197
- ci/install_test.sh
198198
- source activate pandas && python -c "import pandas; pandas.show_versions();"
199-
- ci/print_skipped.py /tmp/single.xml
200-
- ci/print_skipped.py /tmp/multiple.xml
199+
- if [ "$DOC_BUILD"]; then
200+
ci/print_skipped.py /tmp/single.xml;
201+
fi
202+
- if [ "$DOC_BUILD"]; then
203+
ci/print_skipped.py /tmp/multiple.xml;
204+
fi
201205
- echo "after_script done"

0 commit comments

Comments
 (0)