Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 2c4013c

Browse files
Fix Dependency Issue
1 parent e53d758 commit 2c4013c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pytest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install pytest
25+
pip install -r requirements/tests/requirements.txt
2626
- name: Test with pytest
2727
run: |
28-
pytest
28+
pytest tests/

requirements/tests/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pytest
2+
requests

0 commit comments

Comments
 (0)