Skip to content

Commit f7988c7

Browse files
authored
Merge pull request #3099 from wojtek-t/reenable_tests
Remove test exclusions
2 parents 865d08a + 2c5682c commit f7988c7

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

verify/test.sh

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,11 @@ set -o pipefail
2121
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
2222
cd "$KUBE_ROOT"
2323

24-
# WARNING: we exclude the following paths from linting
25-
# because the CI lacks the required golang version (1.20)
26-
EXCLUDE_PATHS=("util-images/watch-list")
27-
28-
if [[ ${#EXCLUDE_PATHS[@]} -ne 0 ]]; then
29-
echo "WARNING: The following paths will be excluded from linting: ${EXCLUDE_PATHS[@]}"
30-
fi
31-
3224
# Find all directories with go.mod file,
3325
# exluding go.mod from vendor/ and _logviewer
3426
MODULE_BASED=$(find . -type d -name vendor -prune \
3527
-o -type f -name go.mod -printf "%h\n" \
36-
| sort -u \
37-
| grep -v -E $(printf -- "-e %s\n" "${EXCLUDE_PATHS[@]}"))
28+
| sort -u)
3829

3930
set +x
4031
status=0

0 commit comments

Comments
 (0)