This repository was archived by the owner on Mar 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -385,6 +385,14 @@ def showcase(
385385
386386 with showcase_library (session , templates = templates , other_opts = other_opts ):
387387 session .install ("pytest" , "pytest-asyncio" )
388+
389+ # For prototyping purposes only.
390+ # Remove once https://github.com/googleapis/python-api-core/pull/810 is released
391+ session .install (
392+ "google-api-core @ git+https://github.com/googleapis/python-api-core.git@fix-lro-no-result" ,
393+ "--ignore-installed" ,
394+ )
395+
388396 test_directory = Path ("tests" , "system" )
389397 ignore_file = env .get ("IGNORE_FILE" )
390398 pytest_command = [
@@ -415,6 +423,12 @@ def showcase_w_rest_async(
415423 session , templates = templates , other_opts = other_opts , rest_async_io_enabled = True
416424 ):
417425 session .install ("pytest" , "pytest-asyncio" )
426+ # For prototyping purposes only.
427+ # Remove once https://github.com/googleapis/python-api-core/pull/810 is released
428+ session .install (
429+ "google-api-core @ git+https://github.com/googleapis/python-api-core.git@fix-lro-no-result" ,
430+ "--ignore-installed" ,
431+ )
418432 test_directory = Path ("tests" , "system" )
419433 ignore_file = env .get ("IGNORE_FILE" )
420434 pytest_command = [
You can’t perform that action at this time.
0 commit comments