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
2 changes: 2 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ jobs:
with:
submodules: recursive
- uses: ./.github/actions/setup-uv
with:
python-version: "3.14"
- uses: ./.github/actions/setup-env
- name: Fill and run json-loader tests
run: just json-loader
Expand Down
4 changes: 3 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,17 @@ json-loader *args:
--cov=ethereum \
--cov-branch \
--cov-report=term \
--durations=50 \
--cov-fail-under=85
uv run pytest \
-m "not slow" \
-n auto --maxprocesses 6 --dist=loadfile \
-n {{ xdist_workers }} --dist=loadfile \
--cov-config=pyproject.toml \
--cov=ethereum \
--cov-branch \
--cov-report=term \
--cov-report "xml:{{ output_dir }}/json-loader/coverage.xml" \
--durations=50 \
--basetemp="{{ output_dir }}/json-loader/tmp" \
"$@" \
tests/json_loader
Expand Down