From a0080c6753fbf76ea945ea046a605d082814c7f2 Mon Sep 17 00:00:00 2001 From: Luka Macan Date: Thu, 18 Jan 2024 15:29:55 +0100 Subject: [PATCH] Fix formatting --- test/conftest.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/conftest.py b/test/conftest.py index 26a2866..8f745e7 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -110,7 +110,14 @@ def pytest_generate_tests(metafunc): nnxTestAndNames.append((test, test_dir)) except pydantic.ValidationError as e: _ = e - nnxTestAndNames.append(pytest.param((None, test_dir), marks=pytest.mark.skipif(True, reason=f"Invalid test {test_dir}: {e.errors}"))) + nnxTestAndNames.append( + pytest.param( + (None, test_dir), + marks=pytest.mark.skipif( + True, reason=f"Invalid test {test_dir}: {e.errors}" + ), + ) + ) metafunc.parametrize("nnxTestAndName", nnxTestAndNames) metafunc.parametrize("timeout", [timeout])