From a8120eb5195ed0e7b44662f107baa23dbbda73a9 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Fri, 12 Feb 2016 21:12:18 +0200 Subject: Added plain Python sample project. --- run_tests.py | 1 + 1 file changed, 1 insertion(+) (limited to 'run_tests.py') diff --git a/run_tests.py b/run_tests.py index 221194993..331af7ec9 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): -- cgit v1.2.3