Skip to content

Commit 4d9a750

Browse files
authored
Merge pull request #4626 from pypa/bugfix/msvc-EnvironmentInfo
Restore msvc.EnvironmentInfo
2 parents 5d4473e + a16582b commit 4d9a750

File tree

3 files changed

+1515
-0
lines changed

3 files changed

+1515
-0
lines changed

conftest.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import platform
12
import sys
23

34
import pytest
@@ -67,3 +68,9 @@ def conditional_skip(request):
6768
pytest.skip("running integration tests only")
6869
if not running_integration_tests and is_integration_test:
6970
pytest.skip("skipping integration tests")
71+
72+
73+
@pytest.fixture
74+
def windows_only():
75+
if platform.system() != 'Windows':
76+
pytest.skip("Windows only")

newsfragments/4625.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Restored ``setuptools.msvc.Environmentinfo`` as it is used externally.

0 commit comments

Comments
 (0)