From 325dbb0a517d5f5f7a9e90feb729a72d04e9811a Mon Sep 17 00:00:00 2001 From: eastandwestwind Date: Mon, 25 Nov 2024 17:31:54 +0100 Subject: [PATCH 1/4] adds new lib to set global pytest timeout --- dev-requirements.txt | 1 + setup.cfg | 3 +++ 2 files changed, 4 insertions(+) diff --git a/dev-requirements.txt b/dev-requirements.txt index 149cdcd658..c525f300de 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -12,6 +12,7 @@ pytest-cov==4.0.0 pytest-env==0.6.2 pytest-mock==3.14.0 pytest-rerunfailures==14.0 +pytest-timeout==2.3.1 pytest==7.2.2 requests-mock==1.10.0 setuptools>=64.0.2 diff --git a/setup.cfg b/setup.cfg index 74dfae9ec1..1ef776f940 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,3 +9,6 @@ parentdir_prefix = [bdist_wheel] universal = True + +[pytest] +timeout = 300 \ No newline at end of file From 02ea3990bf85f8ca5acc512245b92be236a3a66a Mon Sep 17 00:00:00 2001 From: eastandwestwind Date: Tue, 26 Nov 2024 17:38:05 +0100 Subject: [PATCH 2/4] bump timeout --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 1ef776f940..a8abe5884d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,4 +11,4 @@ parentdir_prefix = universal = True [pytest] -timeout = 300 \ No newline at end of file +timeout = 500 \ No newline at end of file From 185da79391cf8b516851f23cc786c43c718dbc8c Mon Sep 17 00:00:00 2001 From: eastandwestwind Date: Mon, 2 Dec 2024 12:34:53 +0100 Subject: [PATCH 3/4] different format for setup.cfg file --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index a8abe5884d..795e570d59 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,5 +10,5 @@ parentdir_prefix = [bdist_wheel] universal = True -[pytest] +[tool:pytest] timeout = 500 \ No newline at end of file From c7c4caff5e2cb2e170d88c570d71dd187284a3cf Mon Sep 17 00:00:00 2001 From: eastandwestwind Date: Wed, 4 Dec 2024 20:35:28 +0100 Subject: [PATCH 4/4] retriger CI