diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-02-22 18:50:06 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-02-22 18:50:06 -0500 |
commit | 152890c710747bada1a146de47af77c1b1ee1b5e (patch) | |
tree | 8665dadb28e7953ce1886cfe81cfa3a882fa19c9 /Makefile | |
parent | 65dcfc2e86680fd136f826b29f7b777f553755c4 (diff) | |
download | python-coveragepy-git-152890c710747bada1a146de47af77c1b1ee1b5e.tar.gz |
build: cog moved
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -131,7 +131,7 @@ prebuild: css workflows cogdoc ## One command for all source prep. _sample_cog_html: clean python -m pip install -e . - cd ~/cog/trunk; \ + cd ~/cog; \ rm -rf htmlcov; \ PYTEST_ADDOPTS= coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; \ coverage combine; \ @@ -139,12 +139,12 @@ _sample_cog_html: clean sample_html: _sample_cog_html ## Generate sample HTML report. rm -f doc/sample_html/*.* - cp -r ~/cog/trunk/htmlcov/ doc/sample_html/ + cp -r ~/cog/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/ + cp -r ~/cog/htmlcov/ doc/sample_html_beta/ rm doc/sample_html_beta/.gitignore |