diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-17 21:19:35 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-17 21:19:35 -0400 |
commit | ee3bd4637923f970a003e4261d0be68dbd11e1ea (patch) | |
tree | 9421df9c7dce68d446ca7e5b01eb58c767888832 /tests/test_process.py | |
parent | fc296af810b4b08276d33baf4d8ea37041d49581 (diff) | |
download | python-coveragepy-git-ee3bd4637923f970a003e4261d0be68dbd11e1ea.tar.gz |
Figure out why py3 is failing on Travis
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 3023a18c..2c0db111 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -713,6 +713,9 @@ class AliasedCommandTest(CoverageTest): badcmd = "coverage%d" % (5 - sys.version_info[0]) out = self.run_command(badcmd) self.assertNotIn("Code coverage for Python", out) + if "Code coverage" in out: + out = self.run_command(badcmd + " debug sys") + print(out) def test_specific_alias_works(self): # "coverage-2.7" works on py2.7 |