Skip to content

Commit

Permalink
Add proper xfail mark
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Apr 25, 2024
1 parent b4cfab3 commit f3f5bf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setuptools/tests/test_editable_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def editable_opts(request):
SETUP_SCRIPT_STUB = "__import__('setuptools').setup()"


@pytest.mark.xfail(sys.platform == "darwin", reason="Test is unstable on macOS?")
@pytest.mark.xfail(sys.platform == "darwin", reason="pypa/setuptools#4328")
@pytest.mark.parametrize(
"files",
[
Expand Down Expand Up @@ -898,7 +898,7 @@ class TestOverallBehaviour:
},
}

@pytest.mark.xfail(sys.platform == "darwin", reason="Test is unstable on macOS?")
@pytest.mark.xfail(sys.platform == "darwin", reason="pypa/setuptools#4328")
@pytest.mark.parametrize("layout", EXAMPLES.keys())
def test_editable_install(self, tmp_path, venv, layout, editable_opts):
project, _ = install_project(
Expand Down

0 comments on commit f3f5bf7

Please sign in to comment.