from pathlib import Path import voice_gen def test_tests_import_repository_source(): expected = ( Path(__file__).resolve().parents[1] / "src" / "voice_gen" / "__init__.py" ) assert Path(voice_gen.__file__).resolve() == expected