We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303f5c3 commit 00608d7Copy full SHA for 00608d7
1 file changed
tests/e2e/reqstool_python_hatch_plugin/test_build_e2e.py
@@ -61,9 +61,10 @@ def test_hatch_build_sdist_contains_reqstool_artifacts():
61
62
with tarfile.open(tarballs[-1]) as tf:
63
names = tf.getnames()
64
-
65
- for expected in EXPECTED_IN_TARBALL:
66
- assert any(expected in n for n in names), f"{expected!r} missing from {tarballs[-1].name};\ngot: {names}"
+ for expected in EXPECTED_IN_TARBALL:
+ assert any(
+ expected in n for n in names
67
+ ), f"{expected!r} missing from {tarballs[-1].name};\ngot: {names}"
68
69
# annotations.yml is generated on disk (not bundled in the tarball)
70
annotations_file = tmp_project / "build" / "reqstool" / "annotations.yml"
0 commit comments