Skip to content

Commit

Permalink
install dev packages during test run action take two
Browse files Browse the repository at this point in the history
  • Loading branch information
meeb committed Jul 27, 2024
1 parent d955cba commit 5b0147b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install -d
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run whoisit tests
run: make test
3 changes: 3 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
responses
pytest-httpx
pytest-asyncio

0 comments on commit 5b0147b

Please sign in to comment.