diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-14 14:58:12 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-14 14:58:12 -0500 |
| commit | 6d24c0864b2e18fb646ddca1cefd71819b64e83d (patch) | |
| tree | e36ac075d31f29df71bfadadcebb06fd9c487c5c /tests/farm/annotate/run_encodings.py | |
| parent | d2089ccfbbe6da708b065a871b057af88696ff28 (diff) | |
| download | python-coveragepy-6d24c0864b2e18fb646ddca1cefd71819b64e83d.tar.gz | |
Use different out directories for each farm test
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") |
