diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 10:10:08 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 10:10:08 -0400 |
commit | f176032f56c91a1f8a2d1b763f96955e47c0a121 (patch) | |
tree | f064159f89669f18988b814bde7b44c3d48c3c61 /tests | |
parent | 8bdff4ef8448078d06e4d7aba2d2892b8b9b7ac7 (diff) | |
download | python-coveragepy-git-f176032f56c91a1f8a2d1b763f96955e47c0a121.tar.gz |
Get --append working again.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index cbc44efb..20444715 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. |