Skip to content

Commit b853892

Browse files
committed
Replace skip in editable install test with xfail
… as suggested in code review
1 parent f97d27a commit b853892

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

setuptools/tests/test_editable_install.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ def venv(tmp_path, setuptools_wheel):
1818
return env.create()
1919

2020

21-
SETUP_SCRIPT_STUB = "__import__('setuptools').setup()"
22-
2321
EXAMPLE = {
2422
'pyproject.toml': dedent("""\
2523
[build-system]
@@ -86,11 +84,17 @@ def venv(tmp_path, setuptools_wheel):
8684
}
8785

8886

89-
@pytest.mark.parametrize("setup_script", [SETUP_SCRIPT_STUB, None])
90-
def test_editable_with_pyproject(tmp_path, venv, setup_script):
91-
if setup_script is None:
92-
pytest.skip("Editable install currently only supported with `setup.py` stub")
87+
SETUP_SCRIPT_STUB = "__import__('setuptools').setup()"
88+
MISSING_SETUP_SCRIPT = pytest.param(
89+
None,
90+
marks=pytest.mark.xfail(
91+
reason="Editable install is currently only supported with `setup.py`"
92+
)
93+
)
94+
9395

96+
@pytest.mark.parametrize("setup_script", [SETUP_SCRIPT_STUB, MISSING_SETUP_SCRIPT])
97+
def test_editable_with_pyproject(tmp_path, venv, setup_script):
9498
project = tmp_path / "mypkg"
9599
files = {**EXAMPLE, "setup.py": setup_script}
96100
project.mkdir()

0 commit comments

Comments
 (0)