Skip to content

Commit

Permalink
Add docker behave unstoppable test
Browse files Browse the repository at this point in the history
  • Loading branch information
usernamedt authored Aug 24, 2023
1 parent 9506be9 commit 99b81c1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/docker-behave-unstoppable.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 99b81c1

Please sign in to comment.