Run Chaos Tests #1849
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Chaos Tests | |
on: | |
schedule: | |
# Runs every hour on the hour | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup PDM | |
uses: pdm-project/setup-pdm@v4 | |
with: | |
python-version: '3.13' | |
architecture: 'x64' | |
- name: Install Dependencies | |
run: pdm install | |
working-directory: ./ | |
- name: Run Chaos Tests | |
run: pdm run pytest --timeout 1200 chaos-tests | |
working-directory: ./ |