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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ For additional options, see the [Schemathesis CLI reference](https://schemathesi

## Coverage reports

Schema coverage is powered by [tracecov](https://docs.tracecov.sh) and enabled by default. Each run generates:
Schema coverage is powered by [tracecov](https://tracecov.sh) and enabled by default. Each run generates:
- A summary in the Actions step summary
- An HTML report uploaded as a workflow artifact (default name: `schema-coverage-report`)
- A PR comment with the coverage summary (pull requests only)
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ runs:
fi

if [[ "$COVERAGE" == "true" ]]; then
uv tool install "$BASE_SPEC" --with "tracecov>=0.16.6"
uv tool install "$BASE_SPEC" --with "tracecov>=0.21.0"
else
uv tool install "$BASE_SPEC"
fi
Expand Down
4 changes: 2 additions & 2 deletions apps/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ markupsafe==3.0.2
# flask
# jinja2
# werkzeug
tracecov==0.16.6
tracecov==0.21.0
# via -r requirements.in
tracecov-community==0.16.6
tracecov-community==0.21.0
# via tracecov
werkzeug==3.1.3
# via flask
Loading