From 5d02763f8bb2fd0795cee02180d29e9e4ee4797f Mon Sep 17 00:00:00 2001 From: "const.koutsakis@aurecongroup.com" Date: Mon, 27 Apr 2026 02:04:55 +1000 Subject: [PATCH] chore: placeholder test so pytest does not exit 5 on empty scaffold Final piece of #9: with no tests at all, pytest exits with code 5 (no tests collected) and CI's Unit tests + Coverage jobs fail. test_placeholder makes the suite collectable; it is replaced by real tests in #17/#18/#19. --- tests/test_placeholder.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/test_placeholder.py diff --git a/tests/test_placeholder.py b/tests/test_placeholder.py new file mode 100644 index 0000000..ba6a741 --- /dev/null +++ b/tests/test_placeholder.py @@ -0,0 +1,9 @@ +"""Placeholder so pytest does not exit with code 5 (no tests collected) on the +empty scaffold. Real tests land alongside #17 / #18 / #19; this file is +removed once those tests exist and exercise the suite.""" + +from __future__ import annotations + + +def test_placeholder() -> None: + assert 1 + 1 == 2