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
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
pip install -r requirements/databases.txt
- name: Run sync tests (PostgreSQL)
env:
TEST_DATABASE_URL: postgresql://test_user:password@localhost/test
TEST_DATABASE_URL: postgresql+psycopg://test_user:password@localhost/test
run: |
PYTHONPATH=$PWD:$PYTHONPATH pytest -s tests/slack_sdk/oauth/installation_store/test_sqlalchemy.py
PYTHONPATH=$PWD:$PYTHONPATH pytest -s tests/slack_sdk/oauth/state_store/test_sqlalchemy.py
Expand Down
4 changes: 2 additions & 2 deletions requirements/databases.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# pip install -r requirements/databases.txt
# Database drivers for CI testing.

# psycopg2-binary
# psycopg
# Note: postgreSQL driver (sync).
psycopg2-binary>=2.9.12,<3
psycopg[binary]>=3.3.6,<4

# asyncpg
# Note: postgreSQL driver (async).
Expand Down
Loading