Skip to content

Commit

Permalink
debugging code (references Pyomo/pyomo#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghackebeil committed Jun 27, 2016
1 parent 6c3a8b1 commit a4e132e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyutilib/dev/runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ def run(package, argv, use_exec=use_exec):

print("Running... "+' '.join(cmd))
print("")
sys.stdout.flush()
rc = 0
if sys.platform.startswith('java'):
import subprocess
Expand All @@ -124,7 +125,7 @@ def run(package, argv, use_exec=use_exec):
rc = None
os.execvp(cmd[0], cmd)
else:
rc,_ = pyutilib.subprocess.run(cmd, tee=True)
rc,_ = pyutilib.subprocess.run(cmd)#, tee=True)
return rc

def runPyUtilibTests():
Expand Down

0 comments on commit a4e132e

Please sign in to comment.