1
0
Fork 0

Initial kilocode: Kilo.ai token provider with Selenium Firefox + Google OAuth

This commit is contained in:
Arthur K. 2026-03-05 21:22:47 +03:00
commit 061eefdb24
17 changed files with 1629 additions and 0 deletions

12
tests/conftest.py Normal file
View file

@ -0,0 +1,12 @@
import sys
from pathlib import Path
def _add_src_to_path() -> None:
root = Path(__file__).resolve().parents[1]
src = root / "src"
if str(src) not in sys.path:
sys.path.insert(0, str(src))
_add_src_to_path()