...
Check if someone is already following this flaky test process at the same time:
Search for an existing Github ticket about this issue using the
flaky-test
label. (TODO get this label set up)Search on Github to see if the test was already deleted.
Create (or update) a Github ticket with the following informationissue:
Create a ticket new issue in the corresponding repo .
[idea] Consider creating an openedx Issue template for flaky tests.
Title: Something like "<testclass testcase> fails intermittently"
Labels: At a minimum
flaky-test
label (this is needed for searches)Description: Include the following:
A link to a failed build in GitHub Actions.
A link to a passing run for the same commit.
The Error Message and Stacktrace for a failed test.
You should include this text in the Github ticket so it is searchable to others.
Wrap each of these using code-formatting in the text.
Putting it all together you'll be entering something like this:
Code Block containing the test code
Title:
[Flaky test] `path/to/test.py::class::method`
Labels:
flaky-test
(TODO get this label set up)Description: Paste the following template:
hasCode Block This test fails intermittently and
beenwill be
removeddeleted
fromaccording
codebase.to the
ForFlaky Test
triagingProcess
this bug: - Until proven one way or the other, it could be either the code that is flaky or the test that is flaky. - The test has been removed from the codebase, and thus the functionality is no longer covered by CI tests. . - Evaluate whether or not it is or can be covered elsewhere and thus the test was unnecessary, or if there is now risk that a bug in the code could escape and thus the testin
re-enabled.<https://github.com/openedx/edx-platform/pull/___PENDING___> See docs on [how to address flaky tests](https://openedx.atlassian.net/wiki/spaces/AC/pages/4306337795/Flaky+Test+Process#Handling-a-flaky-test-Github-issue) for why this should be fixed and
TestClass:test_case failed in [this build on GitHub |how to
]go about it. - Failing CI run: https://...
and
passed-
inSubsequent
thePassing
[subsequent build | {link}]CI
Errorrun: https://...
MessageFailure
Whatever the error message was for the testcase. ``` Stacktrace ``` The stacktrace from the test result. ```output: ```
...test failure... ```
…and fill out these placeholders:
URL of failed test run in GitHub Actions.
URL of passing run for the same commit.
Output from the failing test, including error message, stack trace, and anything else needed to recognize the same failure again. Build logs aren’t kept forever, and this also makes the text searchable.
Now we can remove the test!
Step 2: Make a PR deleting the flaky test(s):
Delete the flaky test(s) in a single commit in a new PR (so that it is easily cherry-picked by others.)
Include In the Github link in your commit message, link to the GitHub issue you just created, e.g.:
Code Block test: Delete flaky test TEST::METHOD Deleted according to flaky test process: https://openedx.atlassian.net/wiki/spaces/AC/pages/4306337795/Flaky+Test+Process Flaky test ticket: - https://github.com/openedx/edx-platform/issues/11111_____
Note that
temp:
could be used in place oftest:
for the commit type if you assume it will be fixed and restored.If you have any helpful thoughts to add, feel free to comment on the PR.
Place a Update your Github issue to link to the PR back in your Github issue:
The test was [deleted in this PR|https://github.com/openedx/edx-platform/pull/99999]Code Block (replace the
___PENDING___
placeholder in the first line).Get a passing build and at least 1 review before merging to master.
Note: It would be best if the reviewer has some idea about the relative importance of the test and could help prioritize the ticket to fix the test.
Handling a flaky test Github issue
...