diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2022-11-30 15:05:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-30 15:05:21 -0500 |
| commit | e85e519611e7282bfe8b5b961c79da528bf23520 (patch) | |
| tree | 32ebb37fc6ed4a81ae4e931a1b2e8b93e0864b11 | |
| parent | 3c2717c9a923926ca197bee88b4c5b646b1b93d3 (diff) | |
| parent | 7b7ae27d6ce96e2e1b9232d06303ecbc8c4244cc (diff) | |
| download | numpy-e85e519611e7282bfe8b5b961c79da528bf23520.tar.gz | |
Merge pull request #22694 from seberg/asv-quick-test
CI: Make benchmark asv run quick to only check that benchmarks work
| -rwxr-xr-x | tools/travis-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index eeeefe2eb..6216c239b 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -143,7 +143,7 @@ EOF fi if [ -n "$CHECK_BLAS" ]; then - $PYTHON -m pip install threadpoolctl + $PYTHON -m pip install threadpoolctl $PYTHON ../tools/openblas_support.py --check_version fi @@ -181,7 +181,7 @@ EOF pushd ../benchmarks $PYTHON `which asv` check --python=same $PYTHON `which asv` machine --machine travis - $PYTHON `which asv` dev 2>&1| tee asv-output.log + $PYTHON `which asv` dev -q 2>&1| tee asv-output.log if grep -q Traceback asv-output.log; then echo "Some benchmarks have errors!" exit 1 |
