File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -292,10 +292,15 @@ jobs:
292
292
merge-multiple : true
293
293
294
294
- name : " List distributions"
295
+ env :
296
+ # PYVERSIONS: changing the list of versions will change the number of
297
+ # expected distributions.
298
+ EXPECTED : 63
295
299
run : |
296
300
ls -alR
297
- echo "Number of dists, there should be 72 :"
301
+ echo "Number of dists, there should be $EXPECTED :"
298
302
ls -1 coverage-* | wc -l
303
+ files=$(ls coverage-* 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED ] || exit 1
299
304
300
305
- name : " Sign artifacts"
301
306
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.
23
23
Unreleased
24
24
----------
25
25
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
27
30
28
31
29
32
.. start-releases
You can’t perform that action at this time.
0 commit comments