This commit is contained in:
oib
2026-01-26 19:58:21 +01:00
parent 329b3beeba
commit 5c99c92ffb
54 changed files with 6790 additions and 654 deletions

9
tests/test_discovery.py Normal file
View File

@@ -0,0 +1,9 @@
"""Test file to verify pytest discovery is working"""
def test_pytest_discovery():
"""Simple test to verify pytest can discover test files"""
assert True
def test_another_discovery_test():
"""Another test to verify multiple tests are discovered"""
assert 1 + 1 == 2