diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2023-04-06 10:39:56 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-04-06 11:12:22 -0400 |
| commit | f07a4394e2a39630cc4fe67c23cb1ea1ec95313f (patch) | |
| tree | f60900b228f90c8d7cef20a9db58c491e032e6ea | |
| parent | 6297f19f8744ef8fc9b93a2f70d06ca0e3b8908c (diff) | |
| download | python-coveragepy-git-f07a4394e2a39630cc4fe67c23cb1ea1ec95313f.tar.gz | |
build: can't clean a thing until it exists!?
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | howto.txt | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,7 @@ clean_platform: clean: clean_platform ## Remove artifacts of test execution, installation, etc. @echo "Cleaning..." @-pip uninstall -yq coverage + @mkdir -p build # so the chmod won't fail if build doesn't exist @chmod -R 777 build @rm -rf build coverage.egg-info dist htmlcov @rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak @@ -83,6 +83,7 @@ - wait for the new tag build to finish successfully. - @ https://readthedocs.org/dashboard/coverage/advanced/ - change the default version to the new version +- Don't forget to merge the bump-version branch - things to automate: - url to link to latest changes in docs - next version.py line |
