Skip to content

Commit

Permalink
Merge pull request #75 from ayushawasthi24/patch-1
Browse files Browse the repository at this point in the history
Update ci.yml
  • Loading branch information
audreyfeldroy authored Oct 8, 2023
2 parents dc487c6 + 674275a commit fe20980
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Project Tests

on:
push:
branches:
Expand All @@ -24,7 +25,9 @@ jobs:
python -m pip install --upgrade pip
pip install pytest
- name: Test with pytest
- name: Find and run pytest tests
run: |
python -m pytest ./tests/tests.py
python -m pytest ./tests/test_install_package.py
test_files=$(find ./tests/ -name "*test*.py")
# Run pytest on all found test files
python -m pytest $test_files

0 comments on commit fe20980

Please sign in to comment.