diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-11-30 21:37:45 -0500 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-11-30 21:37:45 -0500 |
commit | 3120481d7757760ab3f8d81c5848f55e95603182 (patch) | |
tree | ae4c335da790dff5dd04ac0600a528bf2dadc73a | |
parent | 9e6e6f5b1ced0ae361db32cb72d3b6a632b57dba (diff) | |
download | meson-3120481d7757760ab3f8d81c5848f55e95603182.zip meson-3120481d7757760ab3f8d81c5848f55e95603182.tar.gz meson-3120481d7757760ab3f8d81c5848f55e95603182.tar.bz2 |
CI: scalapack not skippable since it's now in Docker image
-rwxr-xr-x | run_project_tests.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 7c69267..0ae987d 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -545,7 +545,7 @@ def skippable(suite, test): if test.endswith('10 gtk-doc'): return True - # NetCDF is not in the CI image + # NetCDF is not in the CI Docker image if test.endswith('netcdf'): return True @@ -557,10 +557,6 @@ def skippable(suite, test): if test.endswith('29 blocks'): return True - # tested on GitHub Actions instead of Docker - if test.endswith('30 scalapack'): - return True - # No frameworks test should be skipped on linux CI, as we expect all # prerequisites to be installed if mesonlib.is_linux(): |