File tree 8 files changed +17
-19
lines changed
8 files changed +17
-19
lines changed Original file line number Diff line number Diff line change 39
39
# TODO consider using "python3.6 -m venv"
40
40
# which is recommended by python3.6 and may make some difference
41
41
if [ " $TRAVIS_OS_NAME " == " osx" ]; then
42
- pip install virtualenv
42
+ pip install --quiet virtualenv
43
43
virtualenv -p " ${PYTHON_VERSION} " " ${HOME} /virtualenv"
44
44
source " ${HOME} /virtualenv/bin/activate"
45
45
fi
46
46
47
47
# Update all existing python packages
48
- pip install -U pip setuptools
48
+ pip install --quiet - U pip setuptools
49
49
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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ script_path=$(python -c "import os; import sys; print(os.path.realpath(sys.argv[
4
4
source " ${script_path%/* } /setup.sh"
5
5
6
6
export ONNX_BUILD_TESTS=1
7
- pip install protobuf numpy
7
+ pip install --quiet protobuf numpy
8
8
9
9
export CMAKE_ARGS=" -DONNX_WERROR=ON"
10
10
if [[ -n " USE_LITE_PROTO" ]]; then
13
13
export CMAKE_ARGS=" ${CMAKE_ARGS} -DONNXIFI_DUMMY_BACKEND=ON"
14
14
export ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI
15
15
16
- time python setup.py bdist_wheel --universal --dist-dir .
16
+ time python setup.py --quiet bdist_wheel --universal --dist-dir .
17
17
find . -maxdepth 1 -name " *.whl" -ls -exec pip install {} \;
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ export LD_LIBRARY_PATH="${top_dir}/.setuptools-cmake-build/:$LD_LIBRARY_PATH"
10
10
./.setuptools-cmake-build/onnxifi_test_driver_gtests onnx/backend/test/data/node
11
11
12
12
# onnx python API tests
13
- pip install pytest-cov nbval
13
+ pip install --quiet pytest nbval
14
14
pytest
15
15
16
16
# lint python code
17
- pip install flake8
17
+ pip install --quiet flake8
18
18
flake8
19
19
20
20
# Mypy only works with Python 3
@@ -23,15 +23,15 @@ if [ "${PYTHON_VERSION}" != "python2" ]; then
23
23
pip uninstall -y onnx
24
24
time ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI pip install -e .[mypy]
25
25
26
- time python setup.py typecheck
26
+ time python setup.py --quiet typecheck
27
27
28
28
pip uninstall -y onnx
29
29
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 .
31
31
fi
32
32
33
33
# 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
35
35
git status
36
36
git diff --exit-code
37
37
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ Change into another directory to fix this error.
121
121
ONNX uses [ pytest] ( https://docs.pytest.org ) as test driver. In order to run tests, first you need to install pytest:
122
122
123
123
```
124
- pip install pytest-cov nbval
124
+ pip install pytest nbval
125
125
```
126
126
127
127
After installing pytest, do
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ install:
36
36
before_build :
37
37
- cmd : SET PATH=%CONDA_PREFIX%;%CONDA_PREFIX%\Scripts;%PATH%
38
38
- 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
40
40
41
41
build_script :
42
42
# Build and test onnx.
43
43
- cmd : cd c:\projects\onnx
44
44
- 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 .
46
46
- cmd : dir /s /b /a-d "onnx_gtests.exe" >UT.txt & set /p _UT= < UT.txt & %_UT%
47
47
- cmd : dir /b /a-d "*.whl" >WheelFile.txt & set /p _wheel= < WheelFile.txt
48
48
- cmd : pip install %_wheel%
@@ -52,7 +52,7 @@ build_script:
52
52
# Run type checks
53
53
- cmd : pip uninstall -y %_wheel%
54
54
- cmd : rm -rf .setuptools-cmake-build
55
- - cmd : pip install -v -e .[mypy]
55
+ - cmd : pip install --quiet -e .[mypy]
56
56
- cmd : python setup.py typecheck
57
57
# TODO: protobuf files generated by generate-data below show format diffs right now.
58
58
# Will figure out and fix it in separate PR.
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ For implementors in the ONNX community to be able to effectively implement any n
53
53
ONNX uses [ pytest] ( https://docs.pytest.org ) as a test driver. To run tests, you'll first need to install pytest:
54
54
55
55
```
56
- pip install pytest-cov nbval
56
+ pip install pytest nbval
57
57
```
58
58
59
59
After installing pytest, run
Original file line number Diff line number Diff line change 2
2
test =pytest
3
3
4
4
[tool:pytest]
5
- addopts = --nbval --current-env -- cov =onnx --cov-report term-missing
5
+ addopts = --nbval --current-env
6
6
testpaths = onnx/test onnx/examples
7
7
8
8
[metadata]
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ def run(self):
292
292
################################################################################
293
293
294
294
setup_requires .append ('pytest-runner' )
295
- tests_require .append ('pytest-cov ' )
295
+ tests_require .append ('pytest' )
296
296
tests_require .append ('nbval' )
297
297
tests_require .append ('tabulate' )
298
298
tests_require .append ('typing' )
You can’t perform that action at this time.
0 commit comments