We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3347985 commit 67cbd72Copy full SHA for 67cbd72
.github/workflows/ci.yml
@@ -130,7 +130,7 @@ jobs:
130
- name: "Test"
131
env:
132
TOXENV: ${{matrix.test.TOXENV}}
133
- TEST_DB: dbname=testdb
+ TEST_DB: dbname=testdb host=/tmp
134
run: |
135
python -m tox -r -- --color=yes
136
tests/test_scripting.py
@@ -142,7 +142,7 @@ class DBScript(skytools.DBScript):
142
looping = 0
143
144
def work(self):
145
- db = self.get_database("db")
+ db = self.get_database("db", connstr=TEST_DB)
146
curs = db.cursor()
147
curs.execute("select 1")
148
curs.fetchall()
0 commit comments