diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-06-02 07:38:06 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-06-02 07:38:06 -0400 |
commit | f22072a1677c25a4cf48888756809bb1453c40b5 (patch) | |
tree | 9f1a465fcd5c72b187983ff2573afc9403e1aa2c | |
parent | aef87253860e8e1d88d7fe8f47a61f5e94cdc3c1 (diff) | |
download | python-coveragepy-git-f22072a1677c25a4cf48888756809bb1453c40b5.tar.gz |
build: move sample html steps into Makefile
-rw-r--r-- | Makefile | 23 | ||||
-rw-r--r-- | howto.txt | 15 |
2 files changed, 25 insertions, 13 deletions
@@ -106,6 +106,29 @@ workflows: ## Run cog on the workflows to keep them up-to-date. prebuild: css workflows cogdoc ## One command for all source prep. +##@ Sample HTML reports + +.PHONY: _sample_cog_html sample_html sample_html_beta + +_sample_cog_html: clean + python -m pip install -e . + cd ~/cog/trunk; \ + rm -rf htmlcov; \ + PYTEST_ADDOPTS= coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; \ + coverage combine; \ + coverage html + +sample_html: _sample_cog_html ## Generate sample HTML report. + rm -f doc/sample_html/*.* + cp -r ~/cog/trunk/htmlcov/ doc/sample_html/ + rm doc/sample_html/.gitignore + +sample_html_beta: _sample_cog_html ## Generate sample HTML report for a beta release. + rm -f doc/sample_html_beta/*.* + cp -r ~/cog/trunk/htmlcov/ doc/sample_html_beta/ + rm doc/sample_html_beta/.gitignore + + ##@ Kitting: making releases .PHONY: kit kit_upload test_upload kit_local download_kits check_kits tag @@ -27,21 +27,10 @@ $ tox -e doc - commit the release-prep changes - Generate new sample_html to get the latest, incl footer version number: - $ make clean - $ pip install -e . - $ cd ~/cog/trunk - $ rm -rf htmlcov - $ PYTEST_ADDOPTS= coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; coverage combine; coverage html - IF PRE-RELEASE: - $ rm -f ~/coverage/trunk/doc/sample_html_beta/*.* - $ cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/ - $ rm ~/coverage/trunk/doc/sample_html_beta/.gitignore - - IF NOT PRE-RELEASE: - $ rm -f ~/coverage/trunk/doc/sample_html/*.* - $ cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/ - $ rm ~/coverage/trunk/doc/sample_html/.gitignore - $ cd ~/coverage/trunk + $ make sample_html_beta - IF NOT PRE-RELEASE: + $ make sample_html check in the new sample html - Done with changes to source files, check them in. $ git push |