Commit 4a18154e by Sébastien Eustace

Debug tests failing

parent 8392f7da
...@@ -173,7 +173,9 @@ class Provider(SpecificationProvider, UI): ...@@ -173,7 +173,9 @@ class Provider(SpecificationProvider, UI):
# We need to place ourselves in the proper # We need to place ourselves in the proper
# folder for it to work # folder for it to work
current_dir = os.getcwd() current_dir = os.getcwd()
print(current_dir)
os.chdir(tmp_dir.as_posix()) os.chdir(tmp_dir.as_posix())
print(os.getcwd())
try: try:
venv = Venv.create(self._io) venv = Venv.create(self._io)
...@@ -203,6 +205,8 @@ class Provider(SpecificationProvider, UI): ...@@ -203,6 +205,8 @@ class Provider(SpecificationProvider, UI):
finally: finally:
os.chdir(current_dir) os.chdir(current_dir)
print(os.getcwd())
package.source_type = 'git' package.source_type = 'git'
package.source_url = dependency.source package.source_url = dependency.source
package.source_reference = revision package.source_reference = revision
......
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