summaryrefslogtreecommitdiff
path: root/setuptools/tests/config
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-03-26 16:09:28 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-03-26 16:09:28 +0000
commitef424dd6cb9da8bd1daed32590d415f4af2cfc9b (patch)
tree58c9994512156f6fc3eb37633879069245ebface /setuptools/tests/config
parentc275a1216a4e9d9490ca6abe38da4e906ec1252f (diff)
downloadpython-setuptools-git-ef424dd6cb9da8bd1daed32590d415f4af2cfc9b.tar.gz
Remove no longer necessary xfail mark
Diffstat (limited to 'setuptools/tests/config')
-rw-r--r--setuptools/tests/config/test_pyprojecttoml.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/setuptools/tests/config/test_pyprojecttoml.py b/setuptools/tests/config/test_pyprojecttoml.py
index c0ee2378..8cf006a6 100644
--- a/setuptools/tests/config/test_pyprojecttoml.py
+++ b/setuptools/tests/config/test_pyprojecttoml.py
@@ -366,10 +366,7 @@ class TestSkipBadConfig:
[
"[project]\nrequires-python = '>=3.7'\n",
"[project]\nversion = '42'\nrequires-python = '>=3.7'\n",
- pytest.param(
- "[project]\nname='othername'\nrequires-python = '>=3.7'\n",
- marks=pytest.mark.xfail(reason="abravalheri/validate-pyproject#28")
- ),
+ "[project]\nname='othername'\nrequires-python = '>=3.7'\n",
],
)
def test_popular_config(self, tmp_path, pyproject_content, setup_attrs):