1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
--- a/tests/test_outside_project_root.py
+++ b/tests/test_outside_project_root.py
@@ -16,6 +16,7 @@ from skbuild.utils import push_dir
from . import project_setup_py_test
+@pytest.mark.skip(reason="deprecation warning with setuptools 75.x")
@pytest.mark.parametrize("option", [None, "-DINSTALL_FILE:BOOL=1", "-DINSTALL_PROJECT:BOOL=1"])
def test_outside_project_root_fails(option):
with push_dir():
--- a/tests/test_setup.py
+++ b/tests/test_setup.py
@@ -316,6 +316,7 @@ def test_cmake_minimum_required_version_
assert "CMake version 99.98.97 or higher is required." in message
+@pytest.mark.skip(reason="deprecation warning with setuptools 75.x")
@pytest.mark.deprecated()
@pytest.mark.filterwarnings("ignore:setuptools.installer is deprecated:Warning")
@pytest.mark.skipif(
|