From b8241e58e5794f006122d4b61c4805a669fc217f Mon Sep 17 00:00:00 2001 From: Pavel Zorin Date: Mon, 3 Nov 2025 16:20:03 +0100 Subject: [PATCH 1/2] CI: Limit deletion integration tests to 60 minutes --- .github/workflows/test_different_operating_systems.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_different_operating_systems.yml b/.github/workflows/test_different_operating_systems.yml index b6b3f7b3c..7a5288cf6 100644 --- a/.github/workflows/test_different_operating_systems.yml +++ b/.github/workflows/test_different_operating_systems.yml @@ -181,6 +181,7 @@ jobs: run-soft-deletion-test: name: Soft Delete test ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 strategy: matrix: python-version: ${{ fromJSON(inputs.python-versions) }} @@ -218,6 +219,7 @@ jobs: run-hard-deletion-test: name: Hard Delete test ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 strategy: matrix: python-version: ${{ fromJSON(inputs.python-versions) }} From e11a8b9a51fa4c4f3fea43cd8b2f9585a2a27997 Mon Sep 17 00:00:00 2001 From: Pavel Zorin Date: Tue, 4 Nov 2025 12:13:48 +0100 Subject: [PATCH 2/2] CI: Added timeouts for all OS tests --- .github/workflows/test_different_operating_systems.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test_different_operating_systems.yml b/.github/workflows/test_different_operating_systems.yml index 7a5288cf6..02651b474 100644 --- a/.github/workflows/test_different_operating_systems.yml +++ b/.github/workflows/test_different_operating_systems.yml @@ -44,6 +44,7 @@ jobs: run-unit-tests: name: Unit tests ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 strategy: matrix: python-version: ${{ fromJSON(inputs.python-versions) }} @@ -80,6 +81,7 @@ jobs: run-integration-tests: name: Integration tests ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 strategy: matrix: python-version: ${{ fromJSON(inputs.python-versions) }} @@ -116,6 +118,7 @@ jobs: run-library-test: name: Library test ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 strategy: matrix: python-version: ${{ fromJSON(inputs.python-versions) }} @@ -152,6 +155,7 @@ jobs: run-build-test: name: Build test ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 strategy: matrix: python-version: ${{ fromJSON(inputs.python-versions) }}