summaryrefslogtreecommitdiff
path: root/tests/test_cmdline.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-30 10:10:08 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-30 10:10:08 -0400
commit8b9ba53c845a304dfddc5a78cf0107365edc505d (patch)
treeb705d1398fead7799f841f4576f658138b686212 /tests/test_cmdline.py
parente812f4dd7e82a9de6323b139c9ae3e02cd16d7f0 (diff)
downloadpython-coveragepy-8b9ba53c845a304dfddc5a78cf0107365edc505d.tar.gz
Get --append working again.
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r--tests/test_cmdline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index cbc44ef..2044471 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -350,10 +350,10 @@ class CmdLineTest(BaseCmdLineTest):
# run -a calls coverage.load first without erasing.
self.cmd_executes("run -a foo.py", """\
.coverage()
- .load()
.start()
.run_python_file('foo.py', ['foo.py'])
.stop()
+ .combine(data_paths=['.coverage'])
.save()
""")
# --timid sets a flag, and program arguments get passed through.