-
Notifications
You must be signed in to change notification settings - Fork 9.8k
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
Actions workflow for 3.4 passed despite failures within tests #15487
Labels
area/testing
help wanted
priority/important-soon
Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
Comments
/assign I'm debugging some flaky testcases in pipeline. Let me handle this. Thanks |
serathius
added
priority/important-soon
Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
and removed
type/flake
labels
Mar 17, 2023
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
By default, the pipefail is disabled. For instance, the commands should return 1 as exit code, but we get zero. After pipefail enabled, it's back to normal. ```bash $ ( echo hello; exit 1 ) | tee 2>&1 hello $ echo $? 0 $ set -o pipefail $ ( echo hello; exit 122 ) | tee 2>&1 hello $ echo $? 122 ``` And the test.log is used to grep the error from a ton of messages. So that we should `set +e` and set it back after egrep. fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
By default, the pipefail is disabled. For instance, the commands should return 1 as exit code, but we get zero. After pipefail enabled, it's back to normal. ```bash $ ( echo hello; exit 1 ) | tee 2>&1 hello $ echo $? 0 $ set -o pipefail $ ( echo hello; exit 122 ) | tee 2>&1 hello $ echo $? 122 ``` And the test.log is used to grep the error from a ton of messages. So that we should `set +e` and set it back after egrep. fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 18, 2023
By default, the pipefail is disabled. For instance, the commands should return 1 as exit code, but we get zero. After pipefail enabled, it's back to normal. ```bash $ ( echo hello; exit 1 ) | tee 2>&1 hello $ echo $? 0 $ set -o pipefail $ ( echo hello; exit 122 ) | tee 2>&1 hello $ echo $? 122 ``` And the test.log is used to grep the error from a ton of messages. So that we should `set +e` and set it back after egrep. fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 22, 2023
fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
fuweid
added a commit
to fuweid/etcd
that referenced
this issue
Mar 22, 2023
fixes: etcd-io#15487 Signed-off-by: Wei Fu <fuweid89@gmail.com>
Closed by #15504 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/testing
help wanted
priority/important-soon
Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
Which github workflows are flaking?
This workflow run succeeded despite me having errors with one of the tests defined: https://github.com/etcd-io/etcd/actions/runs/4433391180
Issue was with file
tests/e2e/etcd_config_test.go
Which tests are flaking?
Specifically this job: https://github.com/etcd-io/etcd/actions/runs/4433391180/jobs/7778376779
Which finished with the following job output:
Github Action link
https://github.com/etcd-io/etcd/actions/runs/4433391180/jobs/7778376779
Reason for failure (if possible)
No response
Anything else we need to know?
Expectation is this kind of failure would cause the job to fail.
Relates to #15486
The text was updated successfully, but these errors were encountered: