@@ -25,6 +25,7 @@ def compute_uncompressed_hash(inp: Path):
2525
2626@pytest .mark .network
2727@pytest .mark .integration
28+ @pytest .mark .usefixtures ("pybind11" )
2829def test_pep518_sdist (isolated , package_simple_pyproject_ext , tmp_path : Path ):
2930 correct_metadata = textwrap .dedent (
3031 """\
@@ -166,6 +167,7 @@ def test_pep518_wheel_sdist_with_cmake_config(
166167@pytest .mark .configure
167168@pytest .mark .integration
168169@pytest .mark .usefixtures ("package_simple_pyproject_ext" )
170+ @pytest .mark .usefixtures ("pybind11" )
169171@pytest .mark .parametrize (
170172 "build_args" , [(), ("--wheel" ,)], ids = ["sdist_to_wheel" , "wheel_directly" ]
171173)
@@ -211,6 +213,7 @@ def test_pep518_wheel(isolated, build_args, tmp_path: Path):
211213 "build_args" , [(), ("--wheel" ,)], ids = ["sdist_to_wheel" , "wheel_directly" ]
212214)
213215@pytest .mark .usefixtures ("package_simple_pyproject_ext" )
216+ @pytest .mark .usefixtures ("pybind11" )
214217def test_pep518_rebuild_build_dir (isolated , tmp_path , build_args ):
215218 isolated .install ("build[virtualenv]" )
216219
@@ -256,6 +259,7 @@ def test_pep518_rebuild_build_dir(isolated, tmp_path, build_args):
256259@pytest .mark .configure
257260@pytest .mark .integration
258261@pytest .mark .usefixtures ("package_simple_pyproject_ext" )
262+ @pytest .mark .usefixtures ("pybind11" )
259263def test_pep518_pip (isolated ):
260264 isolated .install ("-v" , "." )
261265
0 commit comments