Skip to content

Commit a851715

Browse files
committed
tests: shorter names for Windows
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 2063408 commit a851715

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_setuptools_pep517.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def test_pep517_wheel(virtualenv, tmp_path: Path):
101101
@pytest.mark.skipif(
102102
setuptools_version < Version("61.0"), reason="Requires setuptools 61+"
103103
)
104-
def test_toml_pep517_sdist(tmp_path: Path):
104+
def test_toml_sdist(tmp_path: Path):
105105
correct_metadata = textwrap.dedent(
106106
"""\
107107
Name: cmake-example
@@ -152,7 +152,7 @@ def test_toml_pep517_sdist(tmp_path: Path):
152152
@pytest.mark.skipif(
153153
setuptools_version < Version("61.0"), reason="Requires setuptools 61+"
154154
)
155-
def test_toml_pep517_wheel(virtualenv, tmp_path: Path):
155+
def test_toml_wheel(virtualenv, tmp_path: Path):
156156
dist = tmp_path / "dist"
157157
out = build_wheel(str(dist))
158158
(wheel,) = dist.glob("cmake_example-0.0.1-*.whl")
@@ -183,7 +183,7 @@ def test_toml_pep517_wheel(virtualenv, tmp_path: Path):
183183
@pytest.mark.compile
184184
@pytest.mark.configure
185185
@pytest.mark.usefixtures("package_mixed_setuptools")
186-
def test_pep517_mixed_wheel(virtualenv, tmp_path: Path):
186+
def test_mixed_wheel(virtualenv, tmp_path: Path):
187187
dist = tmp_path / "dist"
188188
out = build_wheel(str(dist))
189189
(wheel,) = dist.glob("mixed_setuptools-3.1.4-*.whl")

0 commit comments

Comments
 (0)