We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0644050 commit 9db4dbdCopy full SHA for 9db4dbd
noxfile.py
@@ -392,7 +392,9 @@ def showcase(
392
"""Run the Showcase test suite."""
393
394
with showcase_library(session, templates=templates, other_opts=other_opts):
395
- session.install("pytest", "pytest-asyncio")
+ # 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")
398
test_directory = Path("tests", "system")
399
ignore_file = env.get("IGNORE_FILE")
400
pytest_command = [
0 commit comments