File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,14 @@ if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
52
52
)
53
53
fi
54
54
55
-
56
- # Exclude vendor checks in certain cases, if they're running in a separate job.
55
+ # Exclude dependency checks in certain cases, if they're running in a separate job.
56
+ # From @cblecker: We can't change the variable name here, unless we update it throughout
57
+ # test-infra (and we would need to pick it backwards).
57
58
if [[ ${EXCLUDE_GODEP:- } =~ ^[yY]$ ]]; then
58
59
EXCLUDED_PATTERNS+=(
59
- " verify-vendor.sh" # runs in separate godeps job
60
- " verify-vendor-licenses.sh" # runs in separate godeps job
60
+ " verify-external-dependencies-version.sh" # runs in separate dependencies job
61
+ " verify-vendor.sh" # runs in separate dependencies job
62
+ " verify-vendor-licenses.sh" # runs in separate dependencies job
61
63
)
62
64
fi
63
65
@@ -75,6 +77,7 @@ QUICK_PATTERNS+=(
75
77
" verify-api-groups.sh"
76
78
" verify-bazel.sh"
77
79
" verify-boilerplate.sh"
80
+ " verify-external-dependencies-version.sh"
78
81
" verify-vendor-licenses.sh"
79
82
" verify-gofmt.sh"
80
83
" verify-imports.sh"
You can’t perform that action at this time.
0 commit comments