summaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
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 22c020577..c64d48976 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -802,6 +802,10 @@ def skippable(suite, test):
if test.endswith('29 blocks'):
return True
+ # Test can't be run if dub is not installed.
+ if test.endswith('85 dub library'):
+ return True
+
# Scientific libraries are skippable on certain systems
# See the discussion here: https://github.com/mesonbuild/meson/pull/6562
if any([x in test for x in ['17 mpi', '25 hdf5', '30 scalapack']]) and skip_scientific: