Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 11 of 11 for copy_test_files (0.16 seconds)

  1. scripts/tests/test_translation_fixer/conftest.py

        lang_docs_dir = docs_dir / "lang" / "docs"
        en_docs_dir.mkdir(parents=True, exist_ok=True)
        lang_docs_dir.mkdir(parents=True, exist_ok=True)
        yield Path.cwd()
    
    
    @pytest.fixture
    def copy_test_files(root_dir: Path, request: pytest.FixtureRequest):
        en_file_path = Path(request.param[0])
        translation_file_path = Path(request.param[1])
        shutil.copy(str(en_file_path), str(root_dir / "docs" / "en" / "docs" / "doc.md"))
    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