Skip to content

Commit 69d71af

Browse files
authored
Workaround for nightly test failures (#1765)
After some debugging, the nightly tests fail when using parallel test execution on seemingly arbitrary tests; but I can't replicate that elsewhere. This PR works around the issue by disabling parallel test execution and extending the time budget for nightly tests (since it does indeed take longer when run serially). --- prior, the commits in this PR were used for debugging
1 parent 6cc6927 commit 69d71af

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/nightly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions: read-all
3030
jobs:
3131
pytest:
3232
runs-on: ubuntu-22.04
33-
timeout-minutes: 60
33+
timeout-minutes: 120
3434
steps:
3535
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3636
- uses: ts-graphviz/setup-graphviz@c001ccfb5aff62e28bda6a6c39b59a7e061be5b9 # v1
@@ -43,4 +43,4 @@ jobs:
4343
pip install -r dev_tools/requirements/envs/pytest.env.txt
4444
pip install --no-deps -e .
4545
- run: |
46-
check/pytest --durations=10
46+
check/pytest --durations=10 -v -n=0

0 commit comments

Comments
 (0)