/usr/lib/rads/tests
NameSizeModeActions
conftest.py2540644editdlrm
test_helps.py5530644editdlrm
__init__.py00644editdlrm
Edit: /usr/lib/rads/tests/conftest.py (254B)
"""pytest fixtures""" from pathlib import Path import pytest @pytest.fixture def install_root(): """Yield a flask test client""" dedrads = Path("/opt/dedrads") if dedrads.is_dir(): return dedrads return Path("/opt/sharedrads")