Commit 693f20d4 authored by Jason R. Coombs's avatar Jason R. Coombs

Use quiet context to suppress stdout.

parent 731c83fd
...@@ -65,12 +65,8 @@ class TestDevelopTest: ...@@ -65,12 +65,8 @@ class TestDevelopTest:
cmd.ensure_finalized() cmd.ensure_finalized()
cmd.install_dir = site.USER_SITE cmd.install_dir = site.USER_SITE
cmd.user = 1 cmd.user = 1
old_stdout = sys.stdout with contexts.quiet():
#sys.stdout = StringIO()
try:
cmd.run() cmd.run()
finally:
sys.stdout = old_stdout
# let's see if we got our egg link at the right place # let's see if we got our egg link at the right place
content = os.listdir(site.USER_SITE) content = os.listdir(site.USER_SITE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment