Skip to content

Commit

Permalink
Fix deps issue when testing against psql DB.
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Apr 29, 2023
1 parent f2d0e15 commit 8d22bb3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install tox
pip install tox psycopg2
- name: Run PyFunceble as defined by tox_run_postgresql.ini
run: tox -c tox_run_postgresql.ini
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install tox
pip install tox psycopg2
- name: Run PyFunceble as defined by tox_run_postgresql.ini
run: tox -c tox_run_postgresql.ini
Expand Down
4 changes: 3 additions & 1 deletion tox_run_postgresql.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ setenv =

passenv = PYFUNCEBLE_*

deps = -rrequirements.txt
deps =
-rrequirements.txt
psycopg2
changedir = {toxinidir}/tests_dir
commands =
public-suffix-pyfunceble
Expand Down

0 comments on commit 8d22bb3

Please sign in to comment.