Skip to content

Commit d8a0cb5

Browse files
committed
Work around pyroma test
1 parent e995eef commit d8a0cb5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Tests/test_pyroma.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,11 @@ def test_pyroma() -> None:
2323
)
2424

2525
else:
26-
# Should have a perfect score
27-
assert rating == (10, [])
26+
# Should have a perfect score, but pyroma does not support PEP 639 yet.
27+
assert rating == (
28+
9,
29+
[
30+
"Your package does neither have a license field "
31+
"nor any license classifiers."
32+
],
33+
)

0 commit comments

Comments
 (0)