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 | de4c72f53f2bccbcf0ee8e3c5f92a742437d530f (patch) | |
tree | 42c12bf8391d55d7dafa187bd672ee6d1a72ff05 /tests/farm/annotate/annotate_dir.py | |
parent | 15a675c32d58a46d5dad2d4b56e1fa67dd25b209 (diff) | |
download | python-coveragepy-de4c72f53f2bccbcf0ee8e3c5f92a742437d530f.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 3e37f9e..86c18ca 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") |