Skip to content

Commit 4da4dd2

Browse files
committed
Reduce verbose logging output by bazel
Signed-off-by: Yong Tang <[email protected]>
1 parent 10a402d commit 4da4dd2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ matrix:
2727
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
2828
- pip install pyarrow==0.11.1
2929
script:
30-
- bazel test --show_progress=no --spawn_strategy standalone -s --verbose_failures --test_output=errors -- //tensorflow_io/...
30+
- bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures --test_output=errors -- //tensorflow_io/...
3131
- name: "Ubuntu 14.04 Python 3.4"
3232
dist: trusty
3333
language: python
@@ -37,7 +37,7 @@ matrix:
3737
- sudo apt-get install -y -qq libav-tools
3838
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
3939
script:
40-
- bazel test --show_progress=no --spawn_strategy standalone -s --verbose_failures --test_output=errors -- //tensorflow_io/...
40+
- bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures --test_output=errors -- //tensorflow_io/...
4141
- name: "Ubuntu 14.04 Python 3.5"
4242
dist: trusty
4343
language: python
@@ -48,7 +48,7 @@ matrix:
4848
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
4949
- pip install pyarrow==0.11.1
5050
script:
51-
- bazel test --show_progress=no --spawn_strategy standalone -s --verbose_failures --test_output=errors -- //tensorflow_io/...
51+
- bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures --test_output=errors -- //tensorflow_io/...
5252
- name: "Ubuntu 14.04 Python 3.6"
5353
dist: trusty
5454
language: python
@@ -59,7 +59,7 @@ matrix:
5959
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
6060
- pip install pyarrow==0.11.1
6161
script:
62-
- bazel test --show_progress=no --spawn_strategy standalone -s --verbose_failures --test_output=errors -- //tensorflow_io/...
62+
- bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures --test_output=errors -- //tensorflow_io/...
6363
- name: "Ubuntu 16.04 Python 2.7 (Video Only)"
6464
dist: xenial
6565
language: python
@@ -69,7 +69,7 @@ matrix:
6969
- sudo apt-get install -y -qq libav-tools
7070
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
7171
script:
72-
- bazel test --show_progress=no --spawn_strategy standalone -s --verbose_failures --test_output=errors -- //tensorflow_io/video:video_py_test
72+
- bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures --test_output=errors -- //tensorflow_io/video:video_py_test
7373
- name: "Ubuntu 16.04 Python 3.5 (Video Only)"
7474
dist: xenial
7575
language: python
@@ -79,21 +79,21 @@ matrix:
7979
- sudo apt-get install -y -qq libav-tools
8080
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
8181
script:
82-
- bazel test --show_progress=no --spawn_strategy standalone -s --verbose_failures --test_output=errors -- //tensorflow_io/video:video_py_test
82+
- bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures --test_output=errors -- //tensorflow_io/video:video_py_test
8383
- name: "Ubuntu 18.04 Python 2.7 (Video Only)"
8484
dist: trusty
8585
language: python
8686
python:
8787
- 2.7
8888
script:
89-
- docker run -i -t -e PYTHON_VERSION= -e BAZEL_VERSION=0.20.0 -e BAZEL_OS=linux --rm -v $PWD:/workspace -w /workspace --net=host ubuntu:18.04 bash -x -c ".travis/python.ubuntu.18.04.sh && apt-get -y -qq install libavformat57 libavcodec57 libavutil55 libswscale4 && bazel test --spawn_strategy standalone -s --verbose_failures -- //tensorflow_io/video:video_py_test"
89+
- docker run -i -t -e PYTHON_VERSION= -e BAZEL_VERSION=0.20.0 -e BAZEL_OS=linux --rm -v $PWD:/workspace -w /workspace --net=host ubuntu:18.04 bash -x -c ".travis/python.ubuntu.18.04.sh && apt-get -y -qq install libavformat57 libavcodec57 libavutil55 libswscale4 && bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures -- //tensorflow_io/video:video_py_test"
9090
- name: "Ubuntu 18.04 Python 3.6 (Video Only)"
9191
dist: trusty
9292
language: python
9393
python:
9494
- 3.6
9595
script:
96-
- docker run -i -t -e PYTHON_VERSION=3 -e BAZEL_VERSION=0.20.0 -e BAZEL_OS=linux --rm -v $PWD:/workspace -w /workspace --net=host ubuntu:18.04 bash -x -c ".travis/python.ubuntu.18.04.sh && apt-get -y -qq install libavformat57 libavcodec57 libavutil55 libswscale4 && bazel test --spawn_strategy standalone -s --verbose_failures -- //tensorflow_io/video:video_py_test"
96+
- docker run -i -t -e PYTHON_VERSION=3 -e BAZEL_VERSION=0.20.0 -e BAZEL_OS=linux --rm -v $PWD:/workspace -w /workspace --net=host ubuntu:18.04 bash -x -c ".travis/python.ubuntu.18.04.sh && apt-get -y -qq install libavformat57 libavcodec57 libavutil55 libswscale4 && bazel test --noshow_progress --noshow_loading_progress --spawn_strategy standalone --verbose_failures -- //tensorflow_io/video:video_py_test"
9797
- name: "Ubuntu 14.04 R 3.2"
9898
dist: trusty
9999
language: r

0 commit comments

Comments
 (0)