Skip to content

Commit

Permalink
improve yaml formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Mar 16, 2024
1 parent 3ad5600 commit 36e7755
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ jobs:
run: pip install .[test]

- name: Run tests
run: |
pytest \
-m "not fuzzing" \
--optimize ${{ matrix.opt-mode }} \
--evm-version ${{ matrix.evm-version }} \
${{ matrix.debug && '--enable-compiler-debug-mode' || '' }} \
${{ matrix.memorymock && '--memorymock' || '' }} \
--showlocals -r aR \
run: >
pytest
-m "not fuzzing"
--optimize ${{ matrix.opt-mode }}
--evm-version ${{ matrix.evm-version }}
${{ matrix.debug && '--enable-compiler-debug-mode' || '' }}
${{ matrix.memorymock && '--memorymock' || '' }}
--showlocals -r aR
tests/
- name: Upload Coverage
Expand Down Expand Up @@ -180,12 +180,12 @@ jobs:
run: curl --location "https://raw.githubusercontent.com/vyperlang/vyper-test-durations/5982755ee8459f771f2e8622427c36494646e1dd/test_durations" -o .test_durations

- name: Run tests
run: |
pytest \
-m "fuzzing" \
--splits 60 \
--group ${{ matrix.group }} \
--splitting-algorithm least_duration \
run: >
pytest
-m "fuzzing"
--splits 60
--group ${{ matrix.group }}
--splitting-algorithm least_duration
-r aR tests/
- name: Upload Coverage
Expand Down

0 comments on commit 36e7755

Please sign in to comment.