From 5dba2bc0e4a38a060b4d8cfbe5dba599ca9cf3d3 Mon Sep 17 00:00:00 2001 From: Morgan Epp <60796713+epmog@users.noreply.github.com> Date: Mon, 5 Jan 2026 17:16:10 -0600 Subject: [PATCH] test: exacerbate flakey test for github runner Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com> --- test/openjd/sessions/test_session.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/openjd/sessions/test_session.py b/test/openjd/sessions/test_session.py index c74e75c..b850669 100644 --- a/test/openjd/sessions/test_session.py +++ b/test/openjd/sessions/test_session.py @@ -2954,9 +2954,11 @@ def test_def_via_stdout_set_empty( # THEN assert "FOO=" in caplog.messages + @pytest.mark.parametrize("iteration", range(1000)) @pytest.mark.usefixtures("caplog") # builtin fixture def test_def_via_stdout_fails_session_action_on_error( self, + iteration: int, # unused but needed for parametrize caplog: pytest.LogCaptureFixture, step_script_definition: StepScript_2023_09, python_exe: str,