diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-16 20:23:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 20:23:28 +0200 |
commit | cb45e9e8361f1d8275ca8acd4c827389c0f0fe98 (patch) | |
tree | d6941532f1a56fb28b6957f230fe41ece1dad1e5 /run_project_tests.py | |
parent | 41bca1ede9500031ebd613719abc39c8795386d0 (diff) | |
parent | 978e6fb88f926da14314a3563de13197a092cc9f (diff) | |
download | meson-cb45e9e8361f1d8275ca8acd4c827389c0f0fe98.zip meson-cb45e9e8361f1d8275ca8acd4c827389c0f0fe98.tar.gz meson-cb45e9e8361f1d8275ca8acd4c827389c0f0fe98.tar.bz2 |
Merge pull request #4616 from dcbaker/python-module-path
add path() method to python module
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 0d64f47..02897ce 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -543,6 +543,7 @@ def detect_tests_to_run(): ('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), + ('python', 'python', backend is not Backend.ninja), ('fpga', 'fpga', shutil.which('yosys') is None), ('frameworks', 'frameworks', False), ('nasm', 'nasm', False), |