Install testballoon using pip install . in testballoon folder
This commit is contained in:
parent
000f8e9310
commit
5df576b73e
1 changed files with 5 additions and 2 deletions
|
|
@ -254,9 +254,12 @@ class PipCaller(CommandlineCaller):
|
|||
import os
|
||||
testballoon = os.path.join(os.path.realpath(os.path.dirname(__file__)), "piptestballoon")
|
||||
|
||||
sarge_command = [pip_command, "install", testballoon, "--verbose"]
|
||||
sarge_command = [pip_command, "install", ".", "--verbose"]
|
||||
try:
|
||||
p = sarge.run(sarge_command, stdout=sarge.Capture(), stderr=sarge.Capture())
|
||||
p = sarge.run(sarge_command,
|
||||
stdout=sarge.Capture(),
|
||||
stderr=sarge.Capture(),
|
||||
cwd=testballoon)
|
||||
|
||||
output = p.stdout.text
|
||||
self._logger.debug("Got output from {}: {}".format(" ".join(sarge_command), output))
|
||||
|
|
|
|||
Loading…
Reference in a new issue