Skip to content

Commit 16de847

Browse files
chore: updates owlbot to set pytest version and add troubleshooting output (#837)
* Sets cache support to false, removes upper req limit * chore: updates owlbot to set pytest version and add troubleshooting output * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent cbd4fcb commit 16de847

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/sqlalchemy-bigquery/noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,7 @@ def compliance(session):
302302
session.install("--pre", "--no-deps", "--upgrade", "sqlalchemy<2.0.0")
303303
session.install(
304304
"mock",
305-
# TODO: Allow latest version of pytest once SQLAlchemy 1.4.28+ is supported.
306-
# See: https://github.com/googleapis/python-bigquery-sqlalchemy/issues/413
307-
"pytest<=7.0.0dev",
305+
"pytest",
308306
"pytest-rerunfailures",
309307
"google-cloud-testutils",
310308
"-c",
@@ -318,6 +316,8 @@ def compliance(session):
318316
extras = "[tests]"
319317
session.install("-e", f".{extras}", "-c", constraints_path)
320318

319+
session.run("python", "-m", "pip", "freeze")
320+
321321
session.run(
322322
"py.test",
323323
"-vv",

packages/sqlalchemy-bigquery/owlbot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,7 @@ def compliance(session):
140140
session.install("--pre", "--no-deps", "--upgrade", "sqlalchemy<2.0.0")
141141
session.install(
142142
"mock",
143-
# TODO: Allow latest version of pytest once SQLAlchemy 1.4.28+ is supported.
144-
# See: https://github.com/googleapis/python-bigquery-sqlalchemy/issues/413
145-
"pytest<=7.0.0dev",
143+
"pytest",
146144
"pytest-rerunfailures",
147145
"google-cloud-testutils",
148146
"-c",
@@ -156,6 +154,8 @@ def compliance(session):
156154
extras = "[tests]"
157155
session.install("-e", f".{extras}", "-c", constraints_path)
158156
157+
session.run("python", "-m", "pip", "freeze")
158+
159159
session.run(
160160
"py.test",
161161
"-vv",

0 commit comments

Comments
 (0)