aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-02-28 15:13:38 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2019-02-28 22:13:38 +0200
commit71cffa67fa90c7905fa8333f9895461563e50435 (patch)
treebb9a0e5263d95f0a5fc95fb785d728e7a6ad32a1 /run_project_tests.py
parent939c00a9727e2ce47f320dd02aa3952c146406c7 (diff)
downloadmeson-71cffa67fa90c7905fa8333f9895461563e50435.zip
meson-71cffa67fa90c7905fa8333f9895461563e50435.tar.gz
meson-71cffa67fa90c7905fa8333f9895461563e50435.tar.bz2
add NetCDF
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 030cd51..bb0e062 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -498,6 +498,10 @@ def skippable(suite, test):
if test.endswith('10 gtk-doc'):
return True
+ # NetCDF is not in the CI image
+ if test.endswith('netcdf'):
+ return True
+
# No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed
if mesonlib.is_linux():