From a22a73478e7dee078366dd39a4f0ce578fdf8048 Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Wed, 28 Dec 2022 18:20:49 +0100 Subject: [PATCH] ci: update pytest Some jobs were failing with an error that seems to be raised by an outdated pytest with a newer pytest-rerunfailures. We let pip choose... ``` 2022-12-28T16:41:10.1173259Z File "/tmp/tmp_82tmdi_/lib/python3.7/site-packages/pytest_rerunfailures.py", line 7, in 2022-12-28T16:41:10.1173840Z from _pytest.resultlog import ResultLog 2022-12-28T16:41:10.1174387Z ModuleNotFoundError: No module named '_pytest.resultlog' ``` --- .ci/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/test.py b/.ci/test.py index 69db2f3..3dd26d4 100644 --- a/.ci/test.py +++ b/.ci/test.py @@ -22,7 +22,7 @@ exclude = [ 'feeadjuster' ] global_dependencies = [ - 'pytest==5.*', + 'pytest', 'pytest-xdist', 'pytest-timeout', 'pytest-rerunfailures',