clan-core/pkgs/clan-cli/tests/conftest.py
Jörg Thalheim 4905e0cecd
All checks were successful
checks-impure / test (pull_request) Successful in 8s
checks / test (pull_request) Successful in 1m25s
move machine_flake fixture to its own file
2023-09-14 16:49:02 +02:00

18 lines
269 B
Python

import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), "helpers"))
pytest_plugins = [
"api",
"temporary_dir",
"clan_flake",
"root",
"age_keys",
"sshd",
"command",
"ports",
"host_group",
"machine_flake",
]