Skip to content

Commit 4ed5a40

Browse files
authored
Fix Kokoro package determination (googleapis#6239)
1 parent ca71e4b commit 4ed5a40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_utils/scripts/get_target_packages_kokoro.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
"""Print a list of packages which require testing."""
1616

17-
import subprocess
1817
import pathlib
18+
import subprocess
1919

2020
import ci_diff_helper
2121

@@ -47,7 +47,7 @@ def get_changed_files(base):
4747

4848
def determine_changed_packages(changed_files):
4949
packages = [
50-
path.parent for path in pathlib.Path('.').glob('*/nox.py')
50+
path.parent for path in pathlib.Path('.').glob('*/noxfile.py')
5151
]
5252

5353
changed_packages = set()

0 commit comments

Comments
 (0)