-
Notifications
You must be signed in to change notification settings - Fork 2k
osa- skip-tests determinize-prow-jobs jobs invalidates skip regexp #1520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,9 +17,11 @@ parameters: | |
| - name: CLUSTER_TYPE | ||
| value: "azure" | ||
| required: true | ||
| - name: TEST_SUITE | ||
|
||
| - name: TEST_FOCUS | ||
| - name: TEST_SKIP | ||
| value: "\\[local\\]" | ||
| - name: TEST_SUITE_SERIAL | ||
| - name: TEST_FOCUS_SERIAL | ||
| - name: TEST_SKIP_SERIAL | ||
| value: "\\[local\\]" | ||
|
|
@@ -122,17 +124,17 @@ objects: | |
| # TODO: bump nodes up to 40 again | ||
| source /tmp/shared/overrides | ||
| set -x | ||
| if [[ -n "${TEST_FOCUS}" ]]; then | ||
| if [[ -n "${TEST_SUITE}" || -n "${TEST_FOCUS}" ]]; then | ||
| ginkgo -v -noColor -nodes=30 $( which extended.test ) -- \ | ||
| -ginkgo.focus="${TEST_FOCUS}" -ginkgo.skip="${TEST_SKIP}" \ | ||
| -suite "${TEST_SUITE}" -ginkgo.focus="${TEST_FOCUS}" -ginkgo.skip="${TEST_SKIP}" \ | ||
| -e2e-output-dir /tmp/artifacts -report-dir /tmp/artifacts/junit \ | ||
| -test.timeout=2h || rc=$? | ||
| -test.timeout=2h ${PROVIDER_ARGS-} || rc=$? | ||
|
||
| fi | ||
| if [[ -n "${TEST_FOCUS_SERIAL}" ]]; then | ||
| if [[ -n "${TEST_SUITE_SERIAL}" || -n "${TEST_FOCUS_SERIAL}" ]]; then | ||
| ginkgo -v -noColor -nodes=1 $( which extended.test ) -- \ | ||
| -ginkgo.focus="${TEST_FOCUS_SERIAL}" -ginkgo.skip="${TEST_SKIP_SERIAL}" \ | ||
| -suite "${TEST_SUITE_SERIAL}" -ginkgo.focus="${TEST_FOCUS_SERIAL}" -ginkgo.skip="${TEST_SKIP_SERIAL}" \ | ||
| -e2e-output-dir /tmp/artifacts -report-dir /tmp/artifacts/junit/serial \ | ||
| -test.timeout=2h || rc=$? | ||
| -test.timeout=2h ${PROVIDER_ARGS-} || rc=$? | ||
| fi | ||
| exit ${rc:-0} | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I struggled with getting either sane wrapping or no wrapping through CI, and ended up giving up. You unwrapped line here is hitting that same issue.