From 99b81c1efea53e30a1c6fb944d634a5b96c793e8 Mon Sep 17 00:00:00 2001 From: Daniil Zakhlystov <47750602+usernamedt@users.noreply.github.com> Date: Thu, 24 Aug 2023 17:30:57 +0200 Subject: [PATCH] Add docker behave unstoppable test --- .../workflows/docker-behave-unstoppable.yml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/docker-behave-unstoppable.yml diff --git a/.github/workflows/docker-behave-unstoppable.yml b/.github/workflows/docker-behave-unstoppable.yml new file mode 100644 index 0000000..87e6b68 --- /dev/null +++ b/.github/workflows/docker-behave-unstoppable.yml @@ -0,0 +1,28 @@ +name: Behave tests (unstoppable) + +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + test: + name: behave unstoppable + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Install tox + run: pip install tox + + - name: Test + run: timeout 21600 make -L TIMEOUT=600 check_unstoppable + + - uses: actions/upload-artifact@v3 + if: failure() + with: + name: logs + path: tests/logs