Skip to content

Commit 9db4dbd

Browse files
committed
temporarily exclude pytest-asyncio 1.0.0
1 parent 0644050 commit 9db4dbd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,9 @@ def showcase(
392392
"""Run the Showcase test suite."""
393393

394394
with showcase_library(session, templates=templates, other_opts=other_opts):
395-
session.install("pytest", "pytest-asyncio")
395+
# Exclude pytest-asyncio==1.0.0 while we investigate the recent failure described in
396+
# https://github.com/googleapis/gapic-generator-python/issues/2399
397+
session.install("pytest", "pytest-asyncio!=1.0.0")
396398
test_directory = Path("tests", "system")
397399
ignore_file = env.get("IGNORE_FILE")
398400
pytest_command = [

0 commit comments

Comments
 (0)