We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c22c57f commit 5450017Copy full SHA for 5450017
scripts/tests/chiptest/__init__.py
@@ -85,10 +85,9 @@ def _GetManualTests() -> Set[str]:
85
86
def _GetFlakyTests() -> Set[str]:
87
"""List of flaky tests, ideally this list should become empty."""
88
- return_value = set()
89
- # We need more data as to why this test flakes sometimes. We have added additional logging.
90
- # return_value.add("Test_TC_OO_2_4.yaml")
91
- return return_value
+ return {
+ "Test_TC_OO_2_4.yaml"
+ }
92
93
94
def _GetSlowTests() -> Set[str]:
0 commit comments