summaryrefslogtreecommitdiff
path: root/howto.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-10-06 07:28:07 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-10-06 07:28:07 -0400
commit54ac58fe3d834388a8881b82bde45f2a2de24d8a (patch)
treefbaaec37644d452215508cdc68df89e0a762bf0b /howto.txt
parentad7bae46720187c6bea66b83b0368fa175e0bd32 (diff)
downloadpython-coveragepy-git-54ac58fe3d834388a8881b82bde45f2a2de24d8a.tar.gz
Latest sample report for the docs
Diffstat (limited to 'howto.txt')
-rw-r--r--howto.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/howto.txt b/howto.txt
index 08dd0595..78b6c443 100644
--- a/howto.txt
+++ b/howto.txt
@@ -17,13 +17,13 @@
- Generate new sample_html to get the latest, incl footer version number:
python setup.py develop
cd C:\ned\cog\trunk
- rmdir/s/q htmlcov
+ rm -rf htmlcov
coverage run --branch --source=cogapp -m cogapp.test_cogapp CogTestsInMemory
coverage html
- IF BETA:
- copy/y htmlcov\*.* C:\ned\coverage\trunk\doc\sample_html_beta
+ cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/
- ELSE:
- copy/y htmlcov\*.* C:\ned\coverage\trunk\doc\sample_html
+ cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/
- IF BETA:
- Build and publish docs:
$ make publishbeta