Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for win32 (0.17 seconds)

  1. scripts/tests/test_translation_fixer/conftest.py

    import pytest
    from typer.testing import CliRunner
    
    skip_on_windows = pytest.mark.skipif(
        sys.platform == "win32", reason="Skipping on Windows"
    )
    
    
    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_path = Path(item.fspath).resolve()
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 25 10:37:59 GMT 2026
    - 1.3K bytes
    - Click Count (0)
Back to Top