diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-02-18 20:37:30 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-02-18 20:37:30 -0600 |
commit | c4bafa375d8aa387201a6f622aff3d22f1753b31 (patch) | |
tree | 8c17fb9aec5c6e930c13f312a561bf0be09e5e55 /tests/conftest.py | |
parent | 0259f32e880041e3fbfd7bfba2698723c71700c8 (diff) |
add simple test feature
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..9368432 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,7 @@ +import pytest +from pyssg.arg_parser import get_parser + + +@pytest.fixture +def arg_parser(): + return get_parser()
\ No newline at end of file |