Skip to content

Commit c05b364

Browse files
authored
Make CI log less verbose (onnx#1595)
* Make CI log less verbose * remove pytest-cov * make pip install flake8 quiet * more quiet pip install
1 parent fa568e4 commit c05b364

8 files changed

+17
-19
lines changed

.travis/before_install.sh

+3-5
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,12 @@ fi
3939
# TODO consider using "python3.6 -m venv"
4040
# which is recommended by python3.6 and may make some difference
4141
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
42-
pip install virtualenv
42+
pip install --quiet virtualenv
4343
virtualenv -p "${PYTHON_VERSION}" "${HOME}/virtualenv"
4444
source "${HOME}/virtualenv/bin/activate"
4545
fi
4646

4747
# Update all existing python packages
48-
pip install -U pip setuptools
48+
pip install --quiet -U pip setuptools
4949

50-
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
51-
52-
pip install pytest-cov nbval
50+
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U --quiet

.travis/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ script_path=$(python -c "import os; import sys; print(os.path.realpath(sys.argv[
44
source "${script_path%/*}/setup.sh"
55

66
export ONNX_BUILD_TESTS=1
7-
pip install protobuf numpy
7+
pip install --quiet protobuf numpy
88

99
export CMAKE_ARGS="-DONNX_WERROR=ON"
1010
if [[ -n "USE_LITE_PROTO" ]]; then
@@ -13,5 +13,5 @@ fi
1313
export CMAKE_ARGS="${CMAKE_ARGS} -DONNXIFI_DUMMY_BACKEND=ON"
1414
export ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI
1515

16-
time python setup.py bdist_wheel --universal --dist-dir .
16+
time python setup.py --quiet bdist_wheel --universal --dist-dir .
1717
find . -maxdepth 1 -name "*.whl" -ls -exec pip install {} \;

.travis/script.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ export LD_LIBRARY_PATH="${top_dir}/.setuptools-cmake-build/:$LD_LIBRARY_PATH"
1010
./.setuptools-cmake-build/onnxifi_test_driver_gtests onnx/backend/test/data/node
1111

1212
# onnx python API tests
13-
pip install pytest-cov nbval
13+
pip install --quiet pytest nbval
1414
pytest
1515

1616
# lint python code
17-
pip install flake8
17+
pip install --quiet flake8
1818
flake8
1919

2020
# Mypy only works with Python 3
@@ -23,15 +23,15 @@ if [ "${PYTHON_VERSION}" != "python2" ]; then
2323
pip uninstall -y onnx
2424
time ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI pip install -e .[mypy]
2525

26-
time python setup.py typecheck
26+
time python setup.py --quiet typecheck
2727

2828
pip uninstall -y onnx
2929
rm -rf .setuptools-cmake-build
30-
time ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI pip install -v .
30+
time ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI pip install .
3131
fi
3232

3333
# check line endings to be UNIX
34-
find . -type f -regextype posix-extended -regex '.*\.(py|cpp|md|h|cc|proto|proto3|in)' | xargs dos2unix
34+
find . -type f -regextype posix-extended -regex '.*\.(py|cpp|md|h|cc|proto|proto3|in)' | xargs dos2unix --quiet
3535
git status
3636
git diff --exit-code
3737

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Change into another directory to fix this error.
121121
ONNX uses [pytest](https://docs.pytest.org) as test driver. In order to run tests, first you need to install pytest:
122122

123123
```
124-
pip install pytest-cov nbval
124+
pip install pytest nbval
125125
```
126126

127127
After installing pytest, do

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ install:
3636
before_build:
3737
- cmd: SET PATH=%CONDA_PREFIX%;%CONDA_PREFIX%\Scripts;%PATH%
3838
- cmd: conda install -y -c conda-forge protobuf=3.5.2 numpy
39-
- cmd: pip install pytest-cov nbval
39+
- cmd: pip install --quiet pytest nbval
4040

4141
build_script:
4242
# Build and test onnx.
4343
- cmd: cd c:\projects\onnx
4444
- cmd: set ONNX_BUILD_TESTS=1
45-
- cmd: python setup.py bdist_wheel --universal --dist-dir .
45+
- cmd: python setup.py --quiet bdist_wheel --universal --dist-dir .
4646
- cmd: dir /s /b /a-d "onnx_gtests.exe" >UT.txt & set /p _UT= < UT.txt & %_UT%
4747
- cmd: dir /b /a-d "*.whl" >WheelFile.txt & set /p _wheel= < WheelFile.txt
4848
- cmd: pip install %_wheel%
@@ -52,7 +52,7 @@ build_script:
5252
# Run type checks
5353
- cmd: pip uninstall -y %_wheel%
5454
- cmd: rm -rf .setuptools-cmake-build
55-
- cmd: pip install -v -e .[mypy]
55+
- cmd: pip install --quiet -e .[mypy]
5656
- cmd: python setup.py typecheck
5757
# TODO: protobuf files generated by generate-data below show format diffs right now.
5858
# Will figure out and fix it in separate PR.

docs/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ For implementors in the ONNX community to be able to effectively implement any n
5353
ONNX uses [pytest](https://docs.pytest.org) as a test driver. To run tests, you'll first need to install pytest:
5454

5555
```
56-
pip install pytest-cov nbval
56+
pip install pytest nbval
5757
```
5858

5959
After installing pytest, run

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
test=pytest
33

44
[tool:pytest]
5-
addopts = --nbval --current-env --cov=onnx --cov-report term-missing
5+
addopts = --nbval --current-env
66
testpaths = onnx/test onnx/examples
77

88
[metadata]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def run(self):
292292
################################################################################
293293

294294
setup_requires.append('pytest-runner')
295-
tests_require.append('pytest-cov')
295+
tests_require.append('pytest')
296296
tests_require.append('nbval')
297297
tests_require.append('tabulate')
298298
tests_require.append('typing')

0 commit comments

Comments
 (0)