Update repo
All checks were successful
CI Workflow / build-and-test (push) Successful in 11s

This commit is contained in:
2025-08-26 00:35:18 -07:00
parent fcce6439d7
commit fb54fb5aff
5 changed files with 8 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ jobs:
python-version: "3.10" python-version: "3.10"
- name: Install dependencies - name: Install dependencies
run: pip install -r app/requirements.txt run: pip install -r requirements.txt
- name: Run tests - name: Run tests
run: pytest -v run: pytest -v

4
pytest.ini Normal file
View File

@@ -0,0 +1,4 @@
[pytest]
testpaths = tests
python_files = test_*.py
python_functions = test_*

0
src/mycode.py Normal file
View File

3
tests/test_smoke.py Normal file
View File

@@ -0,0 +1,3 @@
# tests/test_smoke.py
def test_smoke():
assert True