From 6ff0e62017e563704b816bcc389c887f784fd51c Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sun, 15 Dec 2024 00:34:12 +0100 Subject: [PATCH] skip another --- tests/supervisors/test_reload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/supervisors/test_reload.py b/tests/supervisors/test_reload.py index ad56a8ec6..cc3eecb0c 100644 --- a/tests/supervisors/test_reload.py +++ b/tests/supervisors/test_reload.py @@ -137,7 +137,7 @@ def test_should_not_reload_when_python_file_in_excluded_subdir_is_changed(self, reloader.shutdown() @pytest.mark.parametrize( - "reloader_class, result", [(StatReload, False), pytest.param((WatchFilesReload, True), marks=skip_non_linux)] + "reloader_class, result", [(StatReload, False), pytest.param(WatchFilesReload, True, marks=skip_non_linux)] ) def test_reload_when_pattern_matched_file_is_changed( self, result: bool, touch_soon: Callable[[Path], None]