From 9ce3a71fa2fc43eaa2b9eb2f2b2767bfc8cd0019 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 9 Apr 2026 13:01:37 +0200 Subject: [PATCH] tests: don't run Python tests in parallel The Python tests are reconfigurating the hardware, thus it's not possible to run them in parallel. Signed-off-by: Daniel Wagner --- tests/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/meson.build b/tests/meson.build index 1b1a54b0ba..12c1501920 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -54,6 +54,7 @@ foreach t : tests env: ['PATH=' + meson.project_build_root() + ':/usr/bin:/usr/sbin'], timeout: 500, protocol: 'tap', + is_parallel: false, ) endforeach