Coverage for tests/conftest.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-27 14:35 +0100
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-27 14:35 +0100
1"""Configuration for the pytest test suite."""
3import os
6def get_fake_script(name: str) -> str:
7 """Get path to a fake script.
9 Parameters:
10 name: The script name.
12 Returns:
13 The fake script path.
14 """
15 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "fakescripts", name)