Skip to content

Commit ab4146a

Browse files
committed
Merge remote-tracking branch 'upstream/master' into add-dates-to-release-notes
2 parents fb7222b + 2b47673 commit ab4146a

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

docs/en/docs/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ hide:
77

88
## Latest Changes
99

10+
### Internal
11+
12+
* ✅ Fix all tests are skipped on Windows. PR [#14994](https://github.com/fastapi/fastapi/pull/14994) by [@YuriiMotov](https://github.com/YuriiMotov).
13+
1014
## 0.133.0 (2026-02-24)
1115

1216
### Upgrades

scripts/tests/test_translation_fixer/conftest.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,17 @@
1010
)
1111

1212

13-
def pytest_collection_modifyitems(items: list[pytest.Item]) -> None:
13+
THIS_DIR = Path(__file__).parent.resolve()
14+
15+
16+
def pytest_collection_modifyitems(config, items: list[pytest.Item]) -> None:
17+
if sys.platform != "win32":
18+
return
19+
1420
for item in items:
15-
item.add_marker(skip_on_windows)
21+
item_path = Path(item.fspath).resolve()
22+
if item_path.is_relative_to(THIS_DIR):
23+
item.add_marker(skip_on_windows)
1624

1725

1826
@pytest.fixture(name="runner")

0 commit comments

Comments
 (0)