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
1 change: 1 addition & 0 deletions docs/reference/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Unreleased changes
### CI/CD

- Review the coverage configuration in light of `covdefaults`, adopting its `assert_never` exclusion and `skip_covered` report setting, and raising all package coverage gates to 100% ({gh-pr}`390`)
- Make the e2e path sanity check independent of the checkout directory's name, so tests can run from git worktrees ({gh-pr}`391`)
- Bump actions/download-artifact from 7 to 8 ({gh-pr}`368`)
- Bump actions/upload-artifact from 6 to 7 ({gh-pr}`369`)
- Bump sigstore/gh-action-sigstore-python from 3.2.0 to 3.3.0 ({gh-pr}`370`)
Expand Down
5 changes: 4 additions & 1 deletion tests/e2e/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@


def test_paths_exist() -> None:
assert PATH_ROOT.name == "ridgeplot"
# Sanity check that PATH_ROOT points at the repo root, without
# depending on the name of the checkout directory (which differs
# in git worktrees and renamed clones)
assert (PATH_ROOT / "pyproject.toml").is_file()
assert PATH_ARTIFACTS.is_dir()
assert PATH_CHARTS.is_dir()

Expand Down
Loading