forked from WojciechMula/pyahocorasick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_checklist.txt
34 lines (23 loc) · 1.07 KB
/
release_checklist.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Use this checklist to track the things to check before a release.
1. Push a branch with all the code ready for release. Check that the
the automated tests and build ran without error on all the OS/Python combos
supported by the various CI (Appveyor and Github Actions).
2. Run these extra tests on Linux.
You will need valgrind and gcovr installed first.
action python3
---------------------------------------
make test [ ]
./runtest.sh unit [ ]
./runtest.sh unpickle [ ]
./runtest.sh valgrind [ ]
./runtest.sh mallocfaults [ ]
./runtest.sh reallocfaults [ ]
./runtest.sh pycallfaults [ ]
./runtest.sh coverage [ ]
Once you ran the coverage, copy and commit the coverage/report to etc/coverage
3. marge and tag the release once everything is A-OK
4. Finally:
- collect the built wheels and sdist from the CI run for the tag run (artifact.zip)
- extract the zip
- run a clamscan and a twine check on these
- publish on PyPI with twine upload.