diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-05 17:34:50 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-05 17:34:50 -0500 |
commit | 0aa535938e562fb9afa2b278b9d3bb7343d97dd9 (patch) | |
tree | 85c1cf5030cb7f12561a99014538727cbf26b735 /test/backtest.py | |
parent | cbb95d50ed6a85e9bbfc028b05fa399b81a3253e (diff) | |
parent | e8b4b3abf90c299c5c3748fd756331cb7d382159 (diff) | |
download | python-coveragepy-0aa535938e562fb9afa2b278b9d3bb7343d97dd9.tar.gz |
Merged config changes to default. Let the 3.3 wild rumpus start!
Diffstat (limited to 'test/backtest.py')
-rw-r--r-- | test/backtest.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/backtest.py b/test/backtest.py index 12bdbc9..63ee519 100644 --- a/test/backtest.py +++ b/test/backtest.py @@ -26,11 +26,6 @@ else: """ - if sys.hexversion > 0x03000000 and cmd.startswith("coverage "): - # We don't have a coverage command on 3.x, so fix it up to call the - # script. Eventually we won't need this. - cmd = "python " + sys.prefix + os.sep + "Scripts" + os.sep + cmd - proc = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT |