Skip to content

Commit 7a5362b

Browse files
committed
Added 14, 15, 16, 17 version of PostgreSQL to tests
1 parent 28c6d4e commit 7a5362b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ jobs:
3535
name: ${{matrix.job.os}}-${{matrix.py_version}}-${{ matrix.postgres_version }}
3636
strategy:
3737
matrix:
38-
py_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
39-
postgres_version: ["14", "15", "16", "17"]
38+
# py_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
39+
py_version: ["3.9"]
40+
# postgres_version: ["14", "15", "16", "17"]
41+
postgres_version: ["14"]
4042
job:
4143
- os: ubuntu-latest
4244
ssl_cmd: sudo apt-get update && sudo apt-get install libssl-dev openssl

python/tests/conftest.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ def number_database_records() -> int:
8585

8686
@pytest.fixture
8787
def ssl_cert_file() -> str:
88-
return os.environ.get("POSTGRES_CERT_FILE", "./server.crt")
88+
return os.environ.get(
89+
"POSTGRES_CERT_FILE",
90+
"/home/runner/work/_temp/pgdata/server.crt",
91+
)
8992

9093

9194
@pytest.fixture

0 commit comments

Comments
 (0)