diff options
Diffstat (limited to 'tests/farm/annotate/run_encodings.py')
-rw-r--r-- | tests/farm/annotate/run_encodings.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/farm/annotate/run_encodings.py b/tests/farm/annotate/run_encodings.py index 527cd88..46d8c64 100644 --- a/tests/farm/annotate/run_encodings.py +++ b/tests/farm/annotate/run_encodings.py @@ -1,10 +1,10 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt -copy("src", "out") +copy("src", "out_encodings") run(""" coverage run utf8.py coverage annotate utf8.py - """, rundir="out") -compare("out", "gold_encodings", "*,cover") -clean("out") + """, rundir="out_encodings") +compare("out_encodings", "gold_encodings", "*,cover") +clean("out_encodings") |