aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-06-09 23:23:38 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-06-10 00:20:03 +0530
commitc1e9c757ebbe7a26b126ee8cb2106f6f8dffa322 (patch)
tree4e1c2a53bead4fe079a7fc40eff3d2c36293da56 /run_project_tests.py
parentb6b3905325884c5fd2a502d09680b5a35564f0df (diff)
downloadmeson-c1e9c757ebbe7a26b126ee8cb2106f6f8dffa322.zip
meson-c1e9c757ebbe7a26b126ee8cb2106f6f8dffa322.tar.gz
meson-c1e9c757ebbe7a26b126ee8cb2106f6f8dffa322.tar.bz2
tests: Increase dependencies coverage a bit more
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 5a88fa4..71d6c0c 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -434,7 +434,7 @@ def detect_tests_to_run():
('objective c', 'objc', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objc_compiler()),
('fortran', 'fortran', backend is not Backend.ninja or not shutil.which('gfortran')),
('swift', 'swift', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('swiftc')),
- ('python3', 'python3', backend is not Backend.ninja or not shutil.which('python3')),
+ ('python3', 'python3', backend is not Backend.ninja),
]
return [(name, gather_tests('test cases/' + subdir), skip) for name, subdir, skip in all_tests]