From a024d75e150334330954bf7a6fdbe8cb02a82491 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Thu, 1 Sep 2022 00:59:41 -0400 Subject: backends: add a new "none" backend It can only be used for projects that don't have any rules at all, i.e. they are purely using Meson to: - configure files - run (script?) tests - install files that exist by the end of the setup stage This can be useful e.g. for Meson itself, a pure python project. --- unittests/baseplatformtests.py | 1 + 1 file changed, 1 insertion(+) (limited to 'unittests/baseplatformtests.py') diff --git a/unittests/baseplatformtests.py b/unittests/baseplatformtests.py index d83ef3f..9e55f6e 100644 --- a/unittests/baseplatformtests.py +++ b/unittests/baseplatformtests.py @@ -70,6 +70,7 @@ class BasePlatformTests(TestCase): self.uninstall_command = get_backend_commands(self.backend) # Test directories self.common_test_dir = os.path.join(src_root, 'test cases/common') + self.python_test_dir = os.path.join(src_root, 'test cases/python') self.rust_test_dir = os.path.join(src_root, 'test cases/rust') self.vala_test_dir = os.path.join(src_root, 'test cases/vala') self.framework_test_dir = os.path.join(src_root, 'test cases/frameworks') -- cgit v1.1