Skip to content

Commit 7cc6691

Browse files
author
Ayana Samuel
committed
init: ci test update
1 parent 771f86d commit 7cc6691

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@ jobs:
2525
source .venv/bin/activate
2626
pip install -r requirements.txt
2727
28-
- name: Run tests
28+
- name: Run Tests
2929
run: |
3030
source .venv/bin/activate
3131
pytest
32+
exit_code=$?
33+
if [ $exit_code -eq 5 ]; then
34+
echo "No tests found, but continuing."
35+
exit 0
36+
else
37+
exit $exit_code
38+
fi
39+

0 commit comments

Comments
 (0)