Compare commits

...

4 Commits

Author SHA1 Message Date
Yurii Motov
ab4146a9fc Merge remote-tracking branch 'upstream/master' into add-dates-to-release-notes 2026-02-25 15:01:45 +01:00
Yurii Motov
fb7222bb6e Add dates to release notes 2026-02-25 14:58:19 +01:00
github-actions[bot]
2b476737b8 📝 Update release notes
[skip ci]
2026-02-25 10:38:23 +00:00
Motov Yurii
1fa1065f9e Fix all tests are skipped on Windows (#14994)
Fix all tests are skipped on Windows
2026-02-25 11:37:59 +01:00
2 changed files with 273 additions and 261 deletions

View File

File diff suppressed because it is too large Load Diff

View File

@@ -10,9 +10,17 @@ skip_on_windows = pytest.mark.skipif(
)
def pytest_collection_modifyitems(items: list[pytest.Item]) -> None:
THIS_DIR = Path(__file__).parent.resolve()
def pytest_collection_modifyitems(config, items: list[pytest.Item]) -> None:
if sys.platform != "win32":
return
for item in items:
item.add_marker(skip_on_windows)
item_path = Path(item.fspath).resolve()
if item_path.is_relative_to(THIS_DIR):
item.add_marker(skip_on_windows)
@pytest.fixture(name="runner")