mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 16:03:07 +02:00
12 lines
252 B
Python
12 lines
252 B
Python
|
|
"""Pytest conftest for anki_decks tests.
|
||
|
|
|
||
|
|
Ensures the geo_data package is importable by adding python_pkg/ to sys.path.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from pathlib import Path
|
||
|
|
import sys
|
||
|
|
|
||
|
|
sys.path.insert(0, str(Path(__file__).parent.parent))
|