diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-25 17:19:01 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-25 17:19:01 -0500 |
commit | 3db03dcfba8bba6e31b3c37d86de4ab0b348874a (patch) | |
tree | 100a8477c0488f77061cc1eee05d42ec260fa77e | |
parent | f5c883a2700d3afc971d7876dd5f907f4489c15a (diff) | |
download | python-coveragepy-git-3db03dcfba8bba6e31b3c37d86de4ab0b348874a.tar.gz |
Pre-release is more accurate than Beta
-rw-r--r-- | howto.txt | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -29,17 +29,17 @@ coverage run --branch --source=cogapp -m nose cogapp/test_cogapp.py:CogTestsInMemory coverage combine coverage html - - IF BETA: + - IF PRE-RELEASE: rm -f ~/coverage/trunk/doc/sample_html_beta/*.* cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/ - - IF NOT BETA: + - IF NOT PRE-RELEASE: rm -f ~/coverage/trunk/doc/sample_html/*.* cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/ cd ~/coverage/trunk - - IF NOT BETA: + - IF NOT PRE-RELEASE: check in the new sample html - Build and publish docs: - - IF BETA: + - IF PRE-RELEASE: $ make publishbeta - ELSE: $ make publish @@ -64,7 +64,7 @@ - Bump version: - coverage/version.py - increment version number - - IF NOT BETA: + - IF NOT PRE-RELEASE: - set to alpha-0 if just released - CHANGES.rst - add an "Unreleased" section to the top. @@ -75,7 +75,7 @@ - visit https://readthedocs.org/projects/coverage/versions/ - find the latest tag in the inactive list, edit it, make it active. - keep just the latest version of each x.y release, make the rest inactive. - - IF NOT BETA: + - IF NOT PRE-RELEASE: - visit https://readthedocs.org/projects/coverage/builds/ - wait for the new tag build to finish successfully. - visit https://readthedocs.org/dashboard/coverage/versions/ |