Skip to content

Commit c1c46b3

Browse files
committed
v1.4.0
--------- 2023-07-13: - check for killed child processes (for instance by OOMKiller) - change dill requirements for windows - require minimum python 3.8 - remove python 3.7 tests - introduce PEP517 packaging standard - introduce pyproject.toml build-system - remove mypy.ini - remove pytest.ini - remove setup.cfg - remove setup.py - remove .bettercodehub.yml - remove .travis.yml - update black config - clean ./tests/test_cli.py - add codeql badge - move 3rd_party_stubs outside the src directory to ``./.3rd_party_stubs`` - add pypy 3.10 tests - add python 3.12-dev tests
1 parent 530574d commit c1c46b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_wrapt_timeout_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def can_not_be_pickled(x: float) -> None:
5555

5656

5757
def test_timeout_class_method(use_signals: bool) -> None:
58-
with pytest.raises(TimeoutError, match=r"Function f timed out after 0\.3 seconds"):
58+
with pytest.raises(TimeoutError, match=r"Function f1 timed out after 0\.3 seconds"):
5959
ClassTest1().f1(use_signals=use_signals)
6060
assert ClassTest1().f1(dec_timeout="instance.x", dec_allow_eval=True, use_signals=use_signals) is None
6161

0 commit comments

Comments
 (0)