Skip to content

Commit

Permalink
ci: use separate z3 binary
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Oct 4, 2024
1 parent 80e1d5a commit c8093bc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,14 @@ jobs:
- name: Install halmos
run: python -m pip install -e .

- name: Setup Z3
id: z3
uses: cda-tum/setup-z3@v1
with:
version: 4.12.6

- name: Run pytest
run: pytest -v --ignore=tests/lib --ignore=tests/test_halmos.py --ignore=tests/test_traces.py ${{ inputs.pytest-options }}

- name: Run test
run: python tests/test_halmos.py tests/regression --halmos-options="-st --solver-threads 1 --storage-layout ${{ matrix.storage-layout }} ${{ matrix.cache-solver }} --solver-timeout-assertion 0 ${{ inputs.halmos-options }}"
run: python tests/test_halmos.py tests/regression --halmos-options="-st --solver-threads 1 --solver-command z3 --storage-layout ${{ matrix.storage-layout }} ${{ matrix.cache-solver }} --solver-timeout-assertion 0 ${{ inputs.halmos-options }}"

0 comments on commit c8093bc

Please sign in to comment.