diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-18 21:48:13 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-18 21:48:13 -0400 |
commit | ae924ecc7dd74205ff0555742a19092021c60701 (patch) | |
tree | ebdd88b6b69aeaa21cdf412cd2aea80eacaa4862 /tests/farm/annotate/annotate_dir.py | |
parent | a189b3bb1846d8e0c7b003a94af69822d3890f9e (diff) | |
download | python-coveragepy-git-ae924ecc7dd74205ff0555742a19092021c60701.tar.gz |
Switch some uses of old command line syntax to new
Diffstat (limited to 'tests/farm/annotate/annotate_dir.py')
-rw-r--r-- | tests/farm/annotate/annotate_dir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/farm/annotate/annotate_dir.py b/tests/farm/annotate/annotate_dir.py index 3e37f9ed..86c18cab 100644 --- a/tests/farm/annotate/annotate_dir.py +++ b/tests/farm/annotate/annotate_dir.py @@ -1,7 +1,7 @@ copy("src", "run") run(""" - coverage -e -x multi.py - coverage -a -d out_anno_dir + coverage run multi.py + coverage annotate -d out_anno_dir """, rundir="run") compare("run/out_anno_dir", "gold_anno_dir", "*,cover", left_extra=True) clean("run") |