Skip to content

Commit b84ac98

Browse files
authored
Merge pull request #881 from ClearcodeHQ/dependabot/pip/pytest-8.0.0
Bump pytest from 7.4.4 to 8.0.0
2 parents bd79d0c + 8dede09 commit b84ac98

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
pytest = "==7.4.4"
7+
pytest = "==8.0.0"
88
port-for = "==0.7.2"
99
mirakuru = "==2.5.2"
1010
psycopg = "==3.1.17"

newsfragments/881.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update postgresql_load default value for it to fallback into the empty list

pytest_postgresql/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def pytest_addoption(parser: Parser) -> None:
6161

6262
parser.addini(name="postgresql_dbname", help=_help_dbname, default="tests")
6363

64-
parser.addini(name="postgresql_load", type="pathlist", help=_help_load, default=None)
64+
parser.addini(name="postgresql_load", type="pathlist", help=_help_load)
6565
parser.addini(name="postgresql_postgres_options", help=_help_postgres_options, default="")
6666

6767
parser.addoption(

0 commit comments

Comments
 (0)