ci: fix imports

This commit is contained in:
Chris Coutinho
2025-10-24 01:04:30 +02:00
parent d4ee5a74c2
commit d55e5708c7
4 changed files with 2 additions and 3 deletions
View File
View File
View File
@@ -15,7 +15,6 @@ import os
import secrets
# Import helpers from conftest
import sys
import time
from typing import AsyncGenerator
from urllib.parse import quote
@@ -23,8 +22,8 @@ from urllib.parse import quote
import httpx
import pytest
sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
from conftest import _handle_oauth_consent_screen
# Import from the root tests/ conftest.py using relative import
from ..conftest import _handle_oauth_consent_screen
logger = logging.getLogger(__name__)