Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:

- name: Run tests
run: |
python3 -m pip install --upgrade pip pytest psycopg furl cryptography
python3 -m pytest -vv test_action.py
python3 -m pip install -r tests/requirements.txt
python3 -m pytest -vv tests/test_action.py
env:
CONNECTION_URI: ${{ steps.postgres.outputs.connection-uri }}
SERVICE_NAME: ${{ steps.postgres.outputs.service-name }}
Expand Down Expand Up @@ -88,8 +88,8 @@ jobs:

- name: Run tests
run: |
python3 -m pip install --upgrade pip pytest psycopg furl cryptography
python3 -m pytest -vv test_action.py
python3 -m pip install -r tests/requirements.txt
python3 -m pytest -vv tests/test_action.py
env:
CONNECTION_URI: ${{ steps.postgres.outputs.connection-uri }}
SERVICE_NAME: ${{ steps.postgres.outputs.service-name }}
Expand Down
4 changes: 4 additions & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
cryptography
furl
psycopg
pytest
File renamed without changes.