Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 1.3 kB view raw
1From 9d933c3c6535c1c63291e3d35f4ada9135d422df Mon Sep 17 00:00:00 2001 2From: Alyssa Ross <hi@alyssa.is> 3Date: Mon, 11 Mar 2019 02:08:43 +0000 4Subject: [PATCH] Allow test_period_of_repetition to be slow 5 6Recent versions of hypothesis default to a 200ms timeout, which wasn't 7enough for my Thinkpad X220 to run this test. I've increased the timeout 8for this single test to hopefully a reasonable amount for older 9hardware. 10 11(cherry picked from commit 752beb3a32b59f54168816da531c9d2a387f9715) 12--- 13 test/test_priority.py | 3 ++- 14 1 file changed, 2 insertions(+), 1 deletion(-) 15 16diff --git a/test/test_priority.py b/test/test_priority.py 17index c98a28d..013ce30 100644 18--- a/test/test_priority.py 19+++ b/test/test_priority.py 20@@ -12,7 +12,7 @@ import itertools 21 22 import pytest 23 24-from hypothesis import given 25+from hypothesis import given, settings 26 from hypothesis.strategies import ( 27 integers, lists, tuples, sampled_from 28 ) 29@@ -489,6 +489,7 @@ class TestPriorityTreeOutput(object): 30 fairness and equidistribution. 31 """ 32 @given(STREAMS_AND_WEIGHTS) 33+ @settings(deadline=None) 34 def test_period_of_repetition(self, streams_and_weights): 35 """ 36 The period of repetition of a priority sequence is given by the sum of 37-- 382.19.2 39