aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-02-12 21:12:18 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-02-21 14:52:36 +0200
commita8120eb5195ed0e7b44662f107baa23dbbda73a9 (patch)
tree7607667cd75d761b2d79a91ea49aac4649e88f99 /run_tests.py
parentd95a1085031fd1deb24e8f3232e9052e598b2b4e (diff)
downloadmeson-a8120eb5195ed0e7b44662f107baa23dbbda73a9.zip
meson-a8120eb5195ed0e7b44662f107baa23dbbda73a9.tar.gz
meson-a8120eb5195ed0e7b44662f107baa23dbbda73a9.tar.bz2
Added plain Python sample project.
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 2211949..331af7e 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):