Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ jobs:
- uses: ./.github/actions/setup-env
- name: Run py3 tests
run: tox -e py3
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
with:
files: .tox/coverage.xml
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}

pypy3:
runs-on: [self-hosted-ghr, size-xl-x64]
Expand Down Expand Up @@ -117,12 +123,6 @@ jobs:
cat $FILE_LIST
- name: Run json infra tests
run: tox -e json_infra -- --file-list="${{ steps.get-changed-files.outputs.file_list }}"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
with:
files: .tox/coverage.xml
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}

optimized:
runs-on: [self-hosted-ghr, size-xl-x64]
Expand Down
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@ commands =
pytest \
-m "not slow" \
-n auto --maxprocesses 6 --dist=loadfile \
--cov-config=pyproject.toml \
--cov=ethereum \
--cov-report=term \
--cov-report "xml:{toxworkdir}/coverage.xml" \
--no-cov-on-fail \
--cov-branch \
--basetemp="{temp_dir}/pytest" \
{posargs} \
tests/json_infra
Expand All @@ -81,6 +75,12 @@ commands =
fill \
-m "not slow and not zkevm and not benchmark" \
-n auto --maxprocesses 10 --dist=loadgroup \
--cov-config=pyproject.toml \
--cov=ethereum \
--cov-report=term \
--cov-report "xml:{toxworkdir}/coverage.xml" \
--no-cov-on-fail \
--cov-branch \
--basetemp="{temp_dir}/pytest" \
--log-to "{toxworkdir}/logs" \
--clean \
Expand Down
Loading