You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Prow runs tests it clones the repo and merges the PR branch into master at time T0. This includes test/presubmit_tests.sh and test/*.yaml
When build-image builds test images, it clones the repo and merges the PR branch into master at time ~T1 separately for each image. This includes test/*/run_test.sh and the whole frontend test suite
When a test runs, it clones the repo and merges the PR branch into master at time ~T2 separately for each test.
* name is used in the XMl file containing the test results. If name
isn't set the XML file won't be created correctly and therefore
not surfaced in gubernator correctly; see kubeflow/kubeflow#1426
* Related to kubeflow/kubeflow#1426
When Prow runs tests it clones the repo and merges the PR branch into master at time T0. This includes
test/presubmit_tests.sh
andtest/*.yaml
When build-image builds test images, it clones the repo and merges the PR branch into master at time ~T1 separately for each image. This includes
test/*/run_test.sh
and the whole frontend test suiteWhen a test runs, it clones the repo and merges the PR branch into master at time ~T2 separately for each test.
This was the issue that most likely caused #196
That issue got fixed when I explicitly re-run build-image step for all problematic PRs.
I do not fully understand how the unit test image has caused problem, since it should only contain the
run_test.sh
script and couple of Go packages.The text was updated successfully, but these errors were encountered: