Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions config/jobs/kubernetes/test-infra/test-infra-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,41 +63,6 @@ presubmits:
memory: "2Gi"
annotations:
testgrid-dashboards: presubmits-test-infra
- name: pull-test-infra-unit-test-race-detector-nonblocking
cluster: eks-prow-build-cluster
branches:
- master
always_run: true
decorate: true
optional: true
skip_report: false
labels:
# Python unit tests run in docker.
preset-dind-enabled: "true"
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20250815-171060767f-master
command:
- runner.sh
args:
- make
- unit
env:
- name: PROW_UNIT_TEST_EXTRA_FLAGS
value: "-race"
# docker-in-docker needs privileged mode
securityContext:
privileged: true
resources:
requests:
cpu: "8"
memory: "8Gi"
limits:
cpu: "8"
memory: "8Gi"
annotations:
testgrid-dashboards: presubmits-test-infra
testgrid-tab-name: unit-test-race-detector-nonblocking
- name: pull-test-infra-unit-test
cluster: eks-prow-build-cluster
branches:
Expand Down
2 changes: 1 addition & 1 deletion hack/make-rules/go-test/unit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fi
umask 0022
mkdir -p "${JUNIT_RESULT_DIR}"
"${REPO_ROOT}/_bin/gotestsum" --junitfile="${JUNIT_RESULT_DIR}/junit-unit.xml" \
-- \
-- -race \
${PROW_UNIT_TEST_EXTRA_FLAGS[@]+${PROW_UNIT_TEST_EXTRA_FLAGS[@]}} \
"./${folder_to_test}"
)