Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 0689f03

Browse files
NickCaogithub-actions[bot]
authored andcommitted
Ignore retcode 5 from pytest
(cherry picked from commit 736ae9a)
1 parent 594d303 commit 0689f03

3 files changed

Lines changed: 32 additions & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ docs-linkcheck:
2424
uv run --isolated --all-packages --group docs $(MAKE) -C docs linkcheck
2525

2626
pkg-test-%: packages/%
27-
uv run --isolated --directory $< pytest
27+
uv run --isolated --directory $< pytest || [ $$? -eq 5 ]
2828

2929
pkg-mypy-%: packages/%
3030
uv run --isolated --directory $< mypy .

packages/hatch-pin-jumpstarter/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,11 @@ dependencies = [
1818
requires = ["hatchling"]
1919
build-backend = "hatchling.build"
2020

21+
[dependency-groups]
22+
dev = [
23+
"pytest>=8.3.5",
24+
"pytest-cov>=6.1.1",
25+
]
26+
2127
[project.entry-points.hatch]
2228
pin_jumpstarter = "hatch_pin_jumpstarter"

uv.lock

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)