We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c83285 commit 776ff27Copy full SHA for 776ff27
tests/utils/test_isolated_build.py
@@ -1,5 +1,6 @@
1
from __future__ import annotations
2
3
+import shutil
4
import sys
5
6
from pathlib import Path
@@ -85,7 +86,8 @@ def test_isolated_env_install_failure(
85
86
def test_isolated_builder_outside_poetry_project_context(
87
tmp_working_directory: Path, fixture_dir: FixtureDirGetter
88
) -> None:
- source = fixture_dir("project_with_setup")
89
+ source = tmp_working_directory / "source"
90
+ shutil.copytree(fixture_dir("project_with_setup"), source)
91
destination = tmp_working_directory / "dist"
92
93
try:
0 commit comments