Skip to content

Commit 717c158

Browse files
committed
tests: add system test dependencies
1 parent 7597cca commit 717c158

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

.librarian/generator-input/client-post-processing/integrate-isolated-handwritten-code.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,20 @@ replacements:
283283
after: |
284284
UNIT_TEST_EXTRAS: List[str] = ["pandas", "storage"]
285285
count: 1
286+
- paths: [
287+
packages/google-cloud-logging/noxfile.py,
288+
]
289+
before: |
290+
SYSTEM_TEST_EXTERNAL_DEPENDENCIES: List\[str\] = \[\]
291+
after: |
292+
SYSTEM_TEST_EXTERNAL_DEPENDENCIES: List[str] = [
293+
"google-cloud-bigquery",
294+
"google-cloud-pubsub",
295+
"google-cloud-storage",
296+
"google-cloud-testutils",
297+
"opentelemetry-sdk",
298+
]
299+
count: 1
286300
- paths: [
287301
packages/google-cloud-automl/noxfile.py,
288302
]

packages/google-cloud-logging/noxfile.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,13 @@
7676
"pytest",
7777
"google-cloud-testutils",
7878
]
79-
SYSTEM_TEST_EXTERNAL_DEPENDENCIES: List[str] = []
79+
SYSTEM_TEST_EXTERNAL_DEPENDENCIES: List[str] = [
80+
"google-cloud-bigquery",
81+
"google-cloud-pubsub",
82+
"google-cloud-storage",
83+
"google-cloud-testutils",
84+
"opentelemetry-sdk",
85+
]
8086
SYSTEM_TEST_LOCAL_DEPENDENCIES: List[str] = []
8187
SYSTEM_TEST_DEPENDENCIES: List[str] = []
8288
SYSTEM_TEST_EXTRAS: List[str] = []

0 commit comments

Comments
 (0)