Skip to content

Commit de20e98

Browse files
author
Jon Wayne Parrott
authored
Don't run tests for every package when api_core is modified (googleapis#4937)
1 parent 8110870 commit de20e98

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test_utils/scripts/get_target_packages.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
# As of this writing, the only "real" dependency is that of error_reporting
3838
# (on logging), the rest are just system test dependencies.
3939
PKG_DEPENDENCIES = {
40-
'core': {'api_core'},
4140
'bigquery': {'storage'},
4241
'error_reporting': {'logging'},
4342
'language': {'storage'},
@@ -174,7 +173,7 @@ def get_changed_packages(file_list):
174173

175174
# If there is a change in core, short-circuit now and return
176175
# everything.
177-
if package in ('api_core', 'core'):
176+
if package in ('core',):
178177
return all_packages
179178

180179
# Add the package, as well as any dependencies this package has.

0 commit comments

Comments
 (0)