Skip to content

Commit 384caa0

Browse files
committed
tests: enable system tests
1 parent 926bff5 commit 384caa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.kokoro/system.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ packages_with_system_tests_pattern=$(printf "|*%s*" "${packages_with_system_test
6161
packages_with_system_tests_pattern="${packages_with_system_tests_pattern:1}" # Remove the leading pipe
6262

6363

64-
# Run system tests for each package with directory packages/*/tests/system
65-
for dir in `find 'packages' -type d -wholename 'packages/*/tests/system'`; do
64+
# Run system tests for each package with directory `packages/*/tests/system` or directory `packages/*/system_tests`'
65+
for dir in `find 'packages' -type d -wholename 'packages/*/tests/system' -o -wholename 'packages/*/system_tests'`; do
6666
# Get the path to the package by removing the suffix /tests/system
6767
package=$(echo $dir | cut -f -2 -d '/')
6868

0 commit comments

Comments
 (0)