@@ -157,13 +157,13 @@ def install(self, *args: str, isolated: bool = True) -> None:
157157 self .module ("pip" , "install" , * isolated_flags , * args )
158158
159159
160- @pytest .fixture ()
160+ @pytest .fixture
161161def isolated (tmp_path : Path , pep518_wheelhouse : Path ) -> VEnv :
162162 path = tmp_path / "venv"
163163 return VEnv (path , wheelhouse = pep518_wheelhouse )
164164
165165
166- @pytest .fixture ()
166+ @pytest .fixture
167167def virtualenv (tmp_path : Path ) -> VEnv :
168168 path = tmp_path / "venv"
169169 return VEnv (path )
@@ -205,7 +205,7 @@ def process_package(
205205 shutil .rmtree ("dist" )
206206
207207
208- @pytest .fixture ()
208+ @pytest .fixture
209209def package_simple_pyproject_ext (
210210 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
211211) -> PackageInfo :
@@ -220,7 +220,7 @@ def package_simple_pyproject_ext(
220220 return package
221221
222222
223- @pytest .fixture ()
223+ @pytest .fixture
224224def package_simple_pyproject_script_with_flags (
225225 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
226226) -> PackageInfo :
@@ -231,7 +231,7 @@ def package_simple_pyproject_script_with_flags(
231231 return package
232232
233233
234- @pytest .fixture ()
234+ @pytest .fixture
235235def package_simple_pyproject_source_dir (
236236 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
237237) -> PackageInfo :
@@ -242,7 +242,7 @@ def package_simple_pyproject_source_dir(
242242 return package
243243
244244
245- @pytest .fixture ()
245+ @pytest .fixture
246246def package_simple_setuptools_ext (
247247 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
248248) -> PackageInfo :
@@ -251,7 +251,7 @@ def package_simple_setuptools_ext(
251251 return package
252252
253253
254- @pytest .fixture ()
254+ @pytest .fixture
255255def package_mixed_setuptools (
256256 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
257257) -> PackageInfo :
@@ -260,7 +260,7 @@ def package_mixed_setuptools(
260260 return package
261261
262262
263- @pytest .fixture ()
263+ @pytest .fixture
264264def package_filepath_pure (
265265 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
266266) -> PackageInfo :
@@ -269,7 +269,7 @@ def package_filepath_pure(
269269 return package
270270
271271
272- @pytest .fixture ()
272+ @pytest .fixture
273273def package_dynamic_metadata (
274274 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
275275) -> PackageInfo :
@@ -278,14 +278,14 @@ def package_dynamic_metadata(
278278 return package
279279
280280
281- @pytest .fixture ()
281+ @pytest .fixture
282282def package_hatchling (tmp_path : Path , monkeypatch : pytest .MonkeyPatch ) -> PackageInfo :
283283 package = PackageInfo ("hatchling" )
284284 process_package (package , tmp_path , monkeypatch )
285285 return package
286286
287287
288- @pytest .fixture ()
288+ @pytest .fixture
289289def package_simplest_c (tmp_path : Path , monkeypatch : pytest .MonkeyPatch ) -> PackageInfo :
290290 package = PackageInfo (
291291 "simplest_c" ,
@@ -294,7 +294,7 @@ def package_simplest_c(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> Packa
294294 return package
295295
296296
297- @pytest .fixture ()
297+ @pytest .fixture
298298def navigate_editable (tmp_path : Path , monkeypatch : pytest .MonkeyPatch ) -> PackageInfo :
299299 package = PackageInfo (
300300 "navigate_editable" ,
@@ -303,7 +303,7 @@ def navigate_editable(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> Packag
303303 return package
304304
305305
306- @pytest .fixture ()
306+ @pytest .fixture
307307def broken_fallback (tmp_path : Path , monkeypatch : pytest .MonkeyPatch ) -> PackageInfo :
308308 package = PackageInfo (
309309 "broken_fallback" ,
@@ -312,7 +312,7 @@ def broken_fallback(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> PackageI
312312 return package
313313
314314
315- @pytest .fixture ()
315+ @pytest .fixture
316316def package_sdist_config (
317317 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
318318) -> PackageInfo :
@@ -323,7 +323,7 @@ def package_sdist_config(
323323 return package
324324
325325
326- @pytest .fixture ()
326+ @pytest .fixture
327327def package_simple_purelib_package (
328328 tmp_path : Path , monkeypatch : pytest .MonkeyPatch
329329) -> PackageInfo :
@@ -342,7 +342,7 @@ def which_mock(name: str) -> str | None:
342342 return None
343343
344344
345- @pytest .fixture ()
345+ @pytest .fixture
346346def protect_get_requires (fp , monkeypatch ):
347347 """
348348 Protect get_requires from actually calling anything variable during tests.
0 commit comments