-
Notifications
You must be signed in to change notification settings - Fork 1
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
sensors/test_status: QA Notice leads to a false fail detection #1
Labels
bug
Something isn't working
Comments
lastoCHka42
added a commit
that referenced
this issue
Aug 29, 2023
Sometimes we get the test result not in the same line, but few lines later, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
lastoCHka42
added a commit
that referenced
this issue
Aug 30, 2023
Sometimes we get the test result not in the same line, but few lines later, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
lastoCHka42
added a commit
that referenced
this issue
Aug 30, 2023
Sometimes we get the test result but few lines later after test name, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
lastoCHka42
added a commit
that referenced
this issue
Aug 30, 2023
Sometimes we get the test result few lines later after test name, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
lastoCHka42
added a commit
that referenced
this issue
Aug 31, 2023
Sometimes we get the test result few lines later after test name, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
lastoCHka42
added a commit
that referenced
this issue
Aug 31, 2023
Sometimes we get the test result few lines later after test name, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
lastoCHka42
added a commit
that referenced
this issue
Sep 1, 2023
Sometimes we get the test result few lines later after test name, i.e. when there are QA Notice before the test result. This patch saves all the tests without the result to the dictionary and finds the result without test with the same worker ID. Resolves #1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/tarantool/tarantool/runs/3814050318
When there is no particular status, we don't search it somewhere below by the log, but assume fail:
multivac/multivac/sensors/test_status.py
Line 15 in 06a1e7e
multivac/multivac/sensors/test_status.py
Line 64 in 06a1e7e
Because usually such line break means that test-run print some information about a fail.
Given QA notice may actually be result of some problem, but we have a notice about low sampling resolution, which definitely should not be detected as a test fail.
In fact, there is no much sense to print a line in two chunks in test-run (see here and here), because now the output is anyway line buffered (due to parallel running of tests). So maybe it worth to resolve it from the test-run side.
The text was updated successfully, but these errors were encountered: