aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-02-26 21:21:53 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-02-26 21:21:53 +0200
commitea60a22cd5a2613652942e48e143d7a3da68bbc0 (patch)
treeae351eb81558c49dd7fc76c5ca380e6b6fc99774 /run_tests.py
parent003696fc27e1f560a8448cc5998443696a162927 (diff)
parentefceac497fa2702124398b2712761015d9a1c78a (diff)
downloadmeson-ea60a22cd5a2613652942e48e143d7a3da68bbc0.zip
meson-ea60a22cd5a2613652942e48e143d7a3da68bbc0.tar.gz
meson-ea60a22cd5a2613652942e48e143d7a3da68bbc0.tar.bz2
Merge Python 3 module support.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py
index d4c6ff2..e85a6d6 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -260,6 +260,7 @@ def detect_tests_to_run():
all_tests.append(('objective c', gather_tests('test cases/objc'), False if not mesonlib.is_windows() else True))
all_tests.append(('fortran', gather_tests('test cases/fortran'), False if shutil.which('gfortran') else True))
all_tests.append(('swift', gather_tests('test cases/swift'), False if shutil.which('swiftc') else True))
+ all_tests.append(('python3', gather_tests('test cases/python3'), False if shutil.which('python3') else True))
return all_tests
def run_tests(extra_args):