From bfe56c70efa709cea530c8ced609ecfb7727e51d Mon Sep 17 00:00:00 2001 From: Josh Karpel Date: Fri, 28 Jun 2024 22:30:39 -0500 Subject: [PATCH] tweak --- tests/test_config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_config.py b/tests/test_config.py index 196c049..ccbfb89 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -19,7 +19,10 @@ ) ROOT = Path(__file__).parent.parent -EXAMPLES = [*(ROOT / "docs" / "examples").iterdir(), ROOT / "synth.yaml"] +EXAMPLES = [ + *(ROOT / "docs" / "examples").iterdir(), + ROOT / "synth.yaml", +] @pytest.mark.parametrize("example", EXAMPLES)