Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Check source
env:
VALGRIND: 0
PYTEST_OPTS: --timeout=1200
PYTEST_OPTS: --timeout=1200 --durations=10
run: |
uv run make check-source BASE_REF="origin/${{ github.base_ref }}"
- name: Check Generated Files have been updated
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
timeout-minutes: 120
env:
RUST_PROFILE: release # Has to match the one in the compile step
PYTEST_OPTS: --timeout=1200
PYTEST_OPTS: --timeout=1200 --durations=10
needs:
- compile
strategy:
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
env:
RUST_PROFILE: release # Has to match the one in the compile step
CFG: compile-gcc
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800 --durations=10
needs:
- compile
strategy:
Expand Down Expand Up @@ -422,7 +422,7 @@ jobs:
RUST_PROFILE: release
SLOW_MACHINE: 1
TEST_DEBUG: 1
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800 --durations=10
needs:
- compile
strategy:
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
env:
VALGRIND: 0
GENERATE_EXAMPLES: 1
PYTEST_OPTS: --timeout=1200
PYTEST_OPTS: --timeout=1200 --durations=10
TEST_NETWORK: regtest
needs:
- compile
Expand Down Expand Up @@ -529,7 +529,7 @@ jobs:
timeout-minutes: 120
env:
RUST_PROFILE: release # Has to match the one in the compile step
PYTEST_OPTS: --timeout=1200
PYTEST_OPTS: --timeout=1200 --durations=10
needs:
- compile
strategy:
Expand Down
Loading