-
Notifications
You must be signed in to change notification settings - Fork 31
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
Make e2e test itself in github action #116
Conversation
.github/workflows/e2e-test.yaml
Outdated
jobs: | ||
build: | ||
|
||
name: Build |
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.
Should this rename to e2e? Build seems strange.
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.
OK, Thanks very much !
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.
Currently, <feature>/expected.yaml
and <feature>/internal/expected.yaml
seems a bit confusing, how about exchange them and move <feature>/verify.yaml
to <feature>/internal/verify.yaml
?
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.
LGTM, look forward to adding other test cases 👍 @chunriyeqiongsaigao
This PR introduces several directories and files, and their relationships are depicted as follows:
This PR solely introduces directories and files (e2e configuration file & github-action configuration file) without altering the existing functionality of e2e. The purpose of this PR is to implement Use Infra E2E to test itself.
This PR currently implements the
fail-fast
andnon-fail-fast
testing modes in thenon-concurrency
mode only. The plan is to implement thefail-fast
andnon-fail-fast
testing modes in theconcurrency
mode in the subsequent PRs.