Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukamac committed Jan 18, 2024
1 parent 7bae33c commit a0080c6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit a0080c6

Please sign in to comment.