Skip to content

Commit 9f191ea

Browse files
committed
Turn off deadlines in hypothesis tests
CI runners are not reliable enough to produce stable timings in subsequent tests, and we're not even testing for reply time here
1 parent 0886287 commit 9f191ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_tabkey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_tab_cycles(self, bash):
2121
assert completion == next_cycle, 'tabs: {}, old: {}, new: {}'.format(
2222
tabs, completion.selected, next_cycle.selected)
2323

24-
@settings(deadline=1000, max_examples=10)
24+
@settings(deadline=None, max_examples=10)
2525
@given(forward = st.integers(min_value=1, max_value=15),
2626
backward = st.integers(min_value=1, max_value=15))
2727
def test_shift_tab(self, bash, log, forward, backward):

0 commit comments

Comments
 (0)