-
Notifications
You must be signed in to change notification settings - Fork 17
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
check current expected to fail files for closed issues #716
Comments
the expected-to-fail linter could also do the checks for us |
there may be still some test mentioned that is not connected to an issue |
Regarding to update expected-to-fail linter to report the closed issue, we have 2 script ( A way could be adding a pipeline only to check or lint if there are any closed issue that are still in expected to failure file. Also one cons could be after all the closed issue has been fixed it can be a pipeline that is of no use (Since it makes API request to get the state of issue.) NOTE: I will be trying to find out if there is another way to do it |
The problem with putting a check in a CI pipeline is that, if someone closes an issue in GitHub that still has expected-failures then suddenly the CI of the repo will go red. That will be really annoying for developers (and everybody). We can make a script that parses an expected-failures file(s), finds each issue link, then does a curl API request to GitHub and finds out the status of each issue. Then it reports all issues that are closed. A script like that can be run locally whenever we like, and then we can manually decide what to do about those issues. |
sure !!! |
All the work realated to isse have been merged. So may be we can closed this @amrita-shrestha @saw-jan. Please close it. |
OKey. Closing here! |
If the test still fails then there is either a problem in the test code (fix the code) or the test fails for some other reason (reorder the test)
The text was updated successfully, but these errors were encountered: