From f215565136185d3a6decfc6de74a3dedb500e977 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sat, 6 Mar 2021 03:13:37 +0100 Subject: [PATCH] Set a timeout for the test run --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0b4e43612..2bcb5a0e1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -52,6 +52,7 @@ jobs: run: pip install tox - name: Run tests run: tox -c psycopg3 -e ${{ matrix.python }} -- --color yes + timeout-minutes: 3 c: name: C implementation @@ -103,3 +104,4 @@ jobs: run: pip install tox - name: Run tests run: tox -c psycopg3_c -e ${{ matrix.python }} -- --color yes + timeout-minutes: 3 -- 2.47.3