Print generated Pipfile during test to help debug failures.

This commit is contained in:
Chris Miller
2018-11-16 09:45:59 -05:00
parent db1eb1bacb
commit 65e49f1bff
+1
View File
@@ -370,6 +370,7 @@ def test_multiple_editable_packages_should_not_race(PipenvInstance, pypi, tmpdir
pipfile_string += '"{0}" = {{path = "{1}", editable = true}}\n'.format(pkg_name, unzip_path.strpath)
with PipenvInstance(pypi=pypi, chdir=True) as p:
print(pipfile_string)
with open(p.pipfile_path, 'w') as f:
f.write(pipfile_string.strip())