summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-02-22 18:50:06 -0500
committerNed Batchelder <ned@nedbatchelder.com>2023-02-22 18:50:06 -0500
commit152890c710747bada1a146de47af77c1b1ee1b5e (patch)
tree8665dadb28e7953ce1886cfe81cfa3a882fa19c9
parent65dcfc2e86680fd136f826b29f7b777f553755c4 (diff)
downloadpython-coveragepy-git-152890c710747bada1a146de47af77c1b1ee1b5e.tar.gz
build: cog moved
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a3028b8b..7f695920 100644
--- a/Makefile
+++ b/Makefile
@@ -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