diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-02-19 04:33:46 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-02-19 04:33:46 -0600 |
commit | b2fbb532e359985142a71354b5b648ae560a80ac (patch) | |
tree | 89ef6ea7a9e39f94845d5eca7855e1e32489759e /tests/conftest.py | |
parent | c4bafa375d8aa387201a6f622aff3d22f1753b31 (diff) |
add final arg parser tests, refactor pyssg error msgs
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 9368432..fcf4189 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -2,6 +2,6 @@ import pytest from pyssg.arg_parser import get_parser -@pytest.fixture +@pytest.fixture(scope='session') def arg_parser(): - return get_parser()
\ No newline at end of file + return get_parser() |