File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ def venv(tmp_path, setuptools_wheel):
18
18
return env .create ()
19
19
20
20
21
- SETUP_SCRIPT_STUB = "__import__('setuptools').setup()"
22
-
23
21
EXAMPLE = {
24
22
'pyproject.toml' : dedent ("""\
25
23
[build-system]
@@ -86,11 +84,17 @@ def venv(tmp_path, setuptools_wheel):
86
84
}
87
85
88
86
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
+
93
95
96
+ @pytest .mark .parametrize ("setup_script" , [SETUP_SCRIPT_STUB , MISSING_SETUP_SCRIPT ])
97
+ def test_editable_with_pyproject (tmp_path , venv , setup_script ):
94
98
project = tmp_path / "mypkg"
95
99
files = {** EXAMPLE , "setup.py" : setup_script }
96
100
project .mkdir ()
You can’t perform that action at this time.
0 commit comments