Skip to content

Commit 5d02763

Browse files
committed
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.
1 parent 4a6c846 commit 5d02763

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

tests/test_placeholder.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""Placeholder so pytest does not exit with code 5 (no tests collected) on the
2+
empty scaffold. Real tests land alongside #17 / #18 / #19; this file is
3+
removed once those tests exist and exercise the suite."""
4+
5+
from __future__ import annotations
6+
7+
8+
def test_placeholder() -> None:
9+
assert 1 + 1 == 2

0 commit comments

Comments
 (0)