Skip to content

Wait for versions

Wait for versions #63

name: Run Test - Pull Request
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
run-tests:
strategy:
fail-fast: true
matrix:
category:
# - acl
# - cold_storage
# - basic
- presign
# - bucket_versioning
# - policy
uses: ./.github/workflows/run-tests.yml
with:
tests: "*_test.py"
config: "../params.example.yaml"
flags: "-v -n auto --color yes -m '${{ matrix.category }}' --tb=line"
secrets:
PROFILES: ${{ secrets.PROFILES }}
tests-success:
runs-on: ubuntu-24.04
needs: [run-tests]
steps:
- name: ok
run:
exit 0
run-locking-tests:
strategy:
fail-fast: false
matrix:
category:
- not cli and locking
uses: ./.github/workflows/run-tests.yml
with:
tests: "*_test.py"
config: "../params.example.yaml"
flags: "-v --log-cli-level INFO --color yes -m '${{ matrix.category }}'"
continue-on-error: true
secrets:
PROFILES: ${{ secrets.PROFILES }}