Skip to content

Commit

Permalink
test.yml: get back to a single pytest worker
Browse files Browse the repository at this point in the history
Suspecting race conditions here:

```
Build failed: ['forge', 'build', '--ast', '--root', 'tests/regression', '--extra-output', 'storageLayout', 'metadata']
----------------------------- Captured stderr call -----------------------------
Failed to install solc 0.8.26: Text file busy (os error 26)
Error:
Text file busy (os error 26)
```
  • Loading branch information
karmacoma-eth committed Aug 2, 2024
1 parent 707b9e1 commit 656c359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
run: python -m pip install -e .

- name: Run pytest
run: pytest -n 4 -v -k "not long and not ffi" --ignore=tests/lib --halmos-options="--debug -st ${{ matrix.parallel }} --storage-layout ${{ matrix.storage-layout }} --solver-timeout-assertion 0 ${{ inputs.halmos-options }}" ${{ inputs.pytest-options }}
run: pytest -n 1 -v -k "not long and not ffi" --ignore=tests/lib --halmos-options="--debug -st ${{ matrix.parallel }} --storage-layout ${{ matrix.storage-layout }} --solver-timeout-assertion 0 ${{ inputs.halmos-options }}" ${{ inputs.pytest-options }}

0 comments on commit 656c359

Please sign in to comment.