We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43316a3 commit 043b2d3Copy full SHA for 043b2d3
tests/test_flaky.py
@@ -0,0 +1,8 @@
1
+import random
2
+from unittest import TestCase
3
+
4
5
+class TestFlaky(TestCase):
6
+ def test_flaky(self):
7
+ # Flaky by design: passes 95% of the time, fails 5%
8
+ self.assertGreater(random.random(), 0.05)
0 commit comments