From e2970a8a5f25b46666a49d73dd33530c6f0cc3bf Mon Sep 17 00:00:00 2001 From: Artur Glavic Date: Tue, 3 Dec 2024 13:13:28 +0100 Subject: [PATCH] add upterm action to workflow for debugging --- .github/workflows/unit_tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index b833369..192c6c1 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -31,6 +31,12 @@ jobs: pip install pytest pip install -r requirements.txt + - name: Setup upterm session + uses: lhotari/action-upterm@v1 + with: + ## If no one connects after 5 minutes, shut down server. + wait-timeout-minutes: 5 + - name: Test with pytest run: | cd tests