We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08ffefe commit fe00432Copy full SHA for fe00432
1 file changed
tests/e2e/reqstool_python_hatch_plugin/test_build_e2e.py
@@ -71,3 +71,6 @@ def test_hatch_build_sdist_contains_reqstool_artifacts():
71
# annotations.yml is generated on disk (not bundled in the tarball)
72
annotations_file = tmp_project / "build" / "reqstool" / "annotations.yml"
73
assert annotations_file.exists(), f"annotations.yml not generated at {annotations_file}"
74
+ annotations_content = annotations_file.read_text()
75
+ assert "REQ_001" in annotations_content, "annotations.yml missing REQ_001"
76
+ assert "SVC_001" in annotations_content, "annotations.yml missing SVC_001"
0 commit comments