Skip to content

Commit 19912f5

Browse files
committed
v1.3.7
-------- 2022-03-28: extend time on test_timeout_decorator_arg - github macos seems to be slow, so sometimes that test fails
1 parent 8b2cc6a commit 19912f5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v1.3.7
5+
--------
6+
2022-03-28: extend time on test_timeout_decorator_arg - github macos seems to be slow, so sometimes that test fails
7+
48
v1.3.6
59
--------
610
2022-03-25: fix github actions windows test

tests/test_wrapt_timeout_decorator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ def use_signals(request: Any) -> Any:
2222

2323

2424
def test_timeout_decorator_arg(use_signals: bool) -> None:
25-
@timeout(0.1, use_signals=use_signals) # type: ignore
25+
@timeout(0.2, use_signals=use_signals) # type: ignore
2626
def f() -> None:
27-
time.sleep(0.2)
27+
time.sleep(0.6)
2828

2929
with pytest.raises(TimeoutError):
3030
f()

0 commit comments

Comments
 (0)