diff --git a/src/tests_authentik/runner_authentik.py b/src/tests_authentik/runner_authentik.py index c8ae216..1ef97b8 100644 --- a/src/tests_authentik/runner_authentik.py +++ b/src/tests_authentik/runner_authentik.py @@ -13,4 +13,4 @@ def condition_always_false(dotenv_path: Path) -> bool: class RunnerAuthentik(Runner): test_dir_name = "tests_authentik" - main_test_name = "test_authentik_setup.py" + main_test_name = "test_authentik_dummy.py" diff --git a/src/tests_authentik/test_authentik_dummy.py b/src/tests_authentik/test_authentik_dummy.py new file mode 100644 index 0000000..d20e1cf --- /dev/null +++ b/src/tests_authentik/test_authentik_dummy.py @@ -0,0 +1,2 @@ +def test_true(): + assert 1 + 1 == 2