]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: Set PYTHONDONTWRITEBYTECODE=1 in test environment
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 1 Apr 2025 14:11:14 +0000 (16:11 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 1 Apr 2025 16:34:00 +0000 (18:34 +0200)
Let's not pollute the source tree with __pycache__ files.

src/test/meson.build

index 9a6e6104ec1963f4bcdbbbebf5e818c7200d5c57..4ef296a41aab72fd9917d4d5b312216f3b51820d 100644 (file)
@@ -15,6 +15,7 @@ test_env.set('SYSTEMD_LANGUAGE_FALLBACK_MAP', language_fallback_map)
 test_env.set('PATH', meson.project_build_root() + ':' + path)
 test_env.set('PROJECT_BUILD_ROOT', meson.project_build_root())
 test_env.set('SYSTEMD_SLOW_TESTS', want_slow_tests ? '1' : '0')
+test_env.set('PYTHONDONTWRITEBYTECODE', '1')
 
 if efi_addon != ''
         test_env.set('EFI_ADDON', efi_addon)