From 4bcbe9be83487423d1bd012d250b99ab5ed7c788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Thu, 2 Feb 2023 16:50:13 +0100 Subject: [PATCH] tests: Make perf tests non-parallel We currently hard code the display name, and running multiple instances at the same time will probably just make things too slow for CI. Part-of: --- tests/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/meson.build b/tests/meson.build index c2640c17e..1d12d0786 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -64,6 +64,7 @@ foreach perf_test : perf_tests '--headless', '--perf=@0@'.format(perf_test), ], + is_parallel: false, env: perf_testenv, ) endforeach