Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CShorten committed Jan 11, 2025
1 parent 7601cf8 commit 08715ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ jobs:

- name: Install dependencies
run: pip install -r requirements.txt

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest requests # Ensure requests is installed
# Step 4: Run tests
- name: Run pytest
run: pytest
run: |
PYTHONPATH=$PYTHONPATH:$(pwd) pytest
Empty file added tests/test_main_test.md
Empty file.

0 comments on commit 08715ef

Please sign in to comment.