Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit c3cb38f

Browse files
committed
MAINT: install gfortran on linux
* install gfortran in the Docker container used for Linux testing so that f2py tests are not skipped with crytpic messages about missing C compilers
1 parent 78ecdcf commit c3cb38f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

config.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ function get_test_cmd {
3232
function run_tests {
3333
# Runs tests on installed distribution from an empty directory
3434
# We only run the 64 bit tests as of NumPy 1.16.
35+
if [ -z "$IS_OSX" ]; then
36+
apt-get -y update && apt-get install -y gfortran
37+
fi
3538
python -c "$(get_test_cmd)"
3639
# Check bundled license file
3740
python ../check_license.py

0 commit comments

Comments
 (0)