Skip to content

Commit

Permalink
sdist fixed upstream (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat authored Feb 18, 2024
1 parent a7d745d commit 194a908
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_tox_uv_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ def test_uv_package_use_default_from_file(tox_project: ToxProjectCreator) -> Non
def test_uv_package_editable(tox_project: ToxProjectCreator, package: str, demo_pkg_inline: Path) -> None:
project = tox_project({"tox.ini": f"[testenv]\npackage={package}"}, base=demo_pkg_inline)
result = project.run()
if package == "sdist":
result.assert_failed(code=2)
else:
result.assert_success()
result.assert_success()


def test_uv_package_editable_legacy(tox_project: ToxProjectCreator, demo_pkg_setuptools: Path) -> None:
Expand Down

0 comments on commit 194a908

Please sign in to comment.