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 56de0eb commit be825a7Copy full SHA for be825a7
hermetic_build/library_generation/tests/utilities_unit_tests.py
@@ -343,10 +343,13 @@ def __get_a_gen_config(
343
"""
344
if combination == 1:
345
libraries = [library_1]
346
+ monorepo = False
347
elif combination == 2:
348
libraries = [library_1, library_2]
349
+ monorepo = True
350
else:
351
libraries = [library_1, common_protos]
352
353
354
# update libraries with custom configuration (for now, only
355
# library_type)
@@ -363,6 +366,7 @@ def __get_a_gen_config(
363
366
gapic_generator_version="",
364
367
googleapis_commitish="",
365
368
libraries=libraries,
369
+ monorepo=monorepo,
370
)
371
372
@staticmethod
0 commit comments