Skip to content

Commit

Permalink
ci: disable pytest-xdist (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Aug 14, 2024
1 parent 4a31b9a commit c3f45dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
python-version: ["3.11", "3.12"]
parallel: ["", "--test-parallel"]
storage-layout: ["solidity", "generic"]
cache-solver: ["", "--cache-solver"]

steps:
- name: Checkout repository
Expand All @@ -53,4 +54,4 @@ jobs:
run: python -m pip install -e .

- name: Run pytest
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 }}
run: pytest -v -k "not long and not ffi" --ignore=tests/lib --halmos-options="--debug -st ${{ matrix.parallel }} --storage-layout ${{ matrix.storage-layout }} ${{ matrix.cache-solver }} --solver-timeout-assertion 0 ${{ inputs.halmos-options }}" ${{ inputs.pytest-options }}

0 comments on commit c3f45dd

Please sign in to comment.