This repository was archived by the owner on Feb 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ function pre_build {
77 if [ -n " $IS_OSX " ]; then
88 sudo installer -pkg archives/gfortran-4.2.3.pkg -target /
99 else
10- build_openblas
10+ build_openblas >& /dev/null
1111 # Force scipy to use OpenBLAS regardless of what numpy uses
1212 cat << EOF > $HOME /site.cfg
1313[openblas]
1919
2020function run_tests {
2121 # Runs tests on installed distribution from an empty directory
22- test_cmd=" import sys; import scipy; sys.exit(not scipy.test('full').wasSuccessful())"
2322 if [ -n " $IS_OSX " ]; then # Test both architectures on OSX
23+ # Can't afford full tests when running both test rigs in same job
24+ test_cmd=" import sys; import scipy; sys.exit(not scipy.test().wasSuccessful())"
2425 arch -i386 python -c " $test_cmd "
2526 arch -x86_64 python -c " $test_cmd "
2627 else # Not OSX
28+ test_cmd=" import sys; import scipy; sys.exit(not scipy.test('full').wasSuccessful())"
2729 python -c " $test_cmd "
2830 fi
2931 # Show BLAS / LAPACK used
You can’t perform that action at this time.
0 commit comments