Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove the setup reader #9099

Merged
merged 4 commits into from
Mar 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
dont pollute fixtures in unit tests
  • Loading branch information
dimbleby committed Mar 23, 2024
commit df64b78da77261b5b69959fb31cf5ef494e5754b
4 changes: 3 additions & 1 deletion tests/utils/test_isolated_build.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import shutil
import sys

from pathlib import Path
Expand Down Expand Up @@ -85,7 +86,8 @@ def test_isolated_env_install_failure(
def test_isolated_builder_outside_poetry_project_context(
tmp_working_directory: Path, fixture_dir: FixtureDirGetter
) -> None:
source = fixture_dir("project_with_setup")
source = tmp_working_directory / "source"
shutil.copytree(fixture_dir("project_with_setup"), source)
destination = tmp_working_directory / "dist"

try:
Expand Down
Loading