File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -292,10 +292,13 @@ jobs:
292292 merge-multiple : true
293293
294294 - name : " List distributions"
295+ env :
296+ EXPECTED : 77
295297 run : |
296298 ls -alR
297- echo "Number of dists, there should be 72 :"
299+ echo "Number of dists, there should be $EXPECTED :"
298300 ls -1 coverage-* | wc -l
301+ files=$(ls coverage-* 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED ] || exit 1)
299302
300303 - name : " Sign artifacts"
301304 uses : sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0
Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ upgrading your version of coverage.py.
2323 Unreleased
2424----------
2525
26- Nothing yet.
26+ - We now ship a py3-none-any.whl wheel file. Thanks, `Russell Keith-Magee
27+ <pull 1914_> `_.
28+
29+ .. _pull 1914 : https://github.com/nedbat/coveragepy/pull/1914
2730
2831
2932.. start-releases
You can’t perform that action at this time.
0 commit comments