Skip to content

Commit

Permalink
fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Mar 17, 2024
1 parent a6344cf commit 1dac95f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
matrix:
opt-mode: ["gas", "none", "codesize"]
debug: [true, false]
group: [1, 2, 3]
group: [1, 2, 3, 4, 5, 6]

# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations
include:
Expand All @@ -93,16 +93,21 @@ jobs:
# TODO: consider removing the memorymock tests
- opt-mode: gas
debug: false
evm-version: shanghai
memorymock: true

# run across other python versions. we don't really need to run all
# modes across all python versions - one is enough
- python-version: ["3.10", "310"]
opt-mode: gas
debug: false
memorymock: false
evm-version: shanghai
- python-version: ["3.12", "312"]
opt-mode: gas
debug: false
memorymock: false
evm-version: shanghai

name: py${{ matrix.python-version[1] || '311' }}-opt-${{ matrix.opt-mode }}${{ matrix.debug && '-debug' || '' }}${{ matrix.memorymock && '-memorymock' || '' }}-${{ matrix.evm-version || 'shanghai' }}-group${{ matrix.group }}

Expand Down Expand Up @@ -132,7 +137,7 @@ jobs:
- name: Run tests
run: |
pytest \
--splits 3 \
--splits 6 \
--group ${{ matrix.group }} \
--splitting-algorithm least_duration \
--dist worksteal \
Expand Down

0 comments on commit 1dac95f

Please sign in to comment.