We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2280f7a commit 637808fCopy full SHA for 637808f
1 file changed
ci/run_conditional_tests.sh
@@ -113,6 +113,16 @@ for subdir in ${subdirs[@]}; do
113
continue
114
fi
115
116
+ # System tests for packages are broken and blocking PRs.
117
+ # See https://github.com/googleapis/google-cloud-node/issues/7976.
118
+ #
119
+ # Per https://github.com/googleapis/google-cloud-node/issues/7921,
120
+ # we are likely to permanently remove these tests in the near future.
121
+ if [[ "${subdir}" == "packages" && "${TEST_TYPE}" == "system" ]]; then
122
+ echo "Skipping ${TEST_TYPE} test for packages: ${d}"
123
+ continue
124
+ fi
125
+
126
# Our CI uses Git Bash on Windows to execute this script, which returns "msys" for OSTYPE.
127
if [[ "$OSTYPE" == "msys" ]]; then
128
if [[ "${windows_exempt_tests}" =~ "${d}" ]]; then
0 commit comments