From d906318a13d526d9c640b85f610df6d947fa6387 Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Sat, 6 Sep 2025 14:54:03 -0500 Subject: [PATCH] fix: use serial single-thread testing for game integration tests --- .config/nextest.toml | 7 +++++++ .gitignore | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index b988946..c7c5bec 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -3,3 +3,10 @@ fail-fast = false [profile.coverage] status-level = "none" + +[[profile.default.overrides]] +filter = 'test(pacman::game::)' +test-group = 'serial' + +[test-groups] +serial = { max-threads = 1 } diff --git a/.gitignore b/.gitignore index aff1d20..3c609e2 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,7 @@ coverage.html # Profiling output flamegraph.svg /profile.* + +# temporary +assets/game/sound/*.wav +/*.py