From b105ea534ba9e04965a6b9e39fcf893eef5a605f Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sat, 6 Jul 2019 14:47:39 -0400 Subject: [PATCH] Fix test for formatting paths Signed-off-by: Dan Ryan --- tests/integration/test_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_project.py b/tests/integration/test_project.py index cf1efa63..d366ed9d 100644 --- a/tests/integration/test_project.py +++ b/tests/integration/test_project.py @@ -161,7 +161,7 @@ def test_include_editable_packages(PipenvInstance, testsroot, pathlib_tmpdir): with PipenvInstance(chdir=True) as p: with tarfile.open(source_path, "r:gz") as tarinfo: tarinfo.extractall(path=str(pathlib_tmpdir)) - c = p.pipenv('install -e {0!r}'.format(package)) + c = p.pipenv('install -e {0}'.format(package.as_posix())) assert c.return_code == 0 project = Project() assert "requests" in [