diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-08-30 20:09:45 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-09-07 01:12:43 +0300 |
commit | 754fbef3de665ea1f627cdd3a225008c0bfce51a (patch) | |
tree | ae599d96bbb5f7c64f09fbb094451cc354eccef1 /run_project_tests.py | |
parent | 646ae846bef76b955771c33fdb49d45a394cf6d8 (diff) | |
download | meson-pythonbump.zip meson-pythonbump.tar.gz meson-pythonbump.tar.bz2 |
Bump minimum supported Python version to 3.6. Closes #6297.pythonbump
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index c843888..bde9149 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -242,7 +242,6 @@ class AutoDeletedDir: failing_logs = [] print_debug = 'MESON_PRINT_TEST_OUTPUT' in os.environ under_ci = 'CI' in os.environ -under_xenial_ci = under_ci and ('XENIAL' in os.environ) skip_scientific = under_ci and ('SKIP_SCIENTIFIC' in os.environ) do_debug = under_ci or print_debug no_meson_log_msg = 'No meson-log.txt found.' @@ -828,8 +827,8 @@ def have_java(): return False def skippable(suite, test): - # Everything is optional when not running on CI, or on Ubuntu 16.04 CI - if not under_ci or under_xenial_ci: + # Everything is optional when not running on CI + if not under_ci: return True if not suite.endswith('frameworks'): |