aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorMichael Hirsch <scivision@users.noreply.github.com>2020-07-12 09:12:16 -0400
committerMichael Hirsch <scivision@users.noreply.github.com>2020-07-12 09:12:16 -0400
commit895de87b9069d1fca51c3550fe7d113a43f9e586 (patch)
treec26e08bd3379a89c7938822c1758df294c6d2bf3 /run_project_tests.py
parent4f1a240bc2c2029f281330c13273bfc876219c45 (diff)
downloadmeson-895de87b9069d1fca51c3550fe7d113a43f9e586.zip
meson-895de87b9069d1fca51c3550fe7d113a43f9e586.tar.gz
meson-895de87b9069d1fca51c3550fe7d113a43f9e586.tar.bz2
some python test cases don't care about backend, so run them in any case
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 c368253..5445e01 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -939,7 +939,7 @@ def detect_tests_to_run(only: T.List[str], use_tmp: bool) -> T.List[T.Tuple[str,
# CUDA tests on Windows: use Ninja backend: python run_project_tests.py --only cuda --backend ninja
TestCategory('cuda', 'cuda', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('nvcc')),
TestCategory('python3', 'python3', backend is not Backend.ninja),
- TestCategory('python', 'python', backend is not Backend.ninja),
+ TestCategory('python', 'python'),
TestCategory('fpga', 'fpga', shutil.which('yosys') is None),
TestCategory('frameworks', 'frameworks'),
TestCategory('nasm', 'nasm'),