From c3f45dd3ff65635840847713ece60b779f8600d5 Mon Sep 17 00:00:00 2001 From: Daejun Park Date: Wed, 14 Aug 2024 15:37:54 -0700 Subject: [PATCH] ci: disable pytest-xdist (#345) --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 336aece9..dc822ef3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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 }}