mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-04-28 11:40:43 +00:00
* Add the tests that we want to run on external CI * remove extra files * Fixes python issues, reove the deadlock on CI * remove unecessary changes * use override to ty.toml * fix pre-commit and try tests with secret in external repo not upstream * skip if key is unavailable * Fix feedback * switch hexagon to snapdragon * cleanup * fix secrets * remove the copyrights at the top of the files
20 lines
562 B
Python
20 lines
562 B
Python
"""Shared pytest fixtures for QDC on-device test runners."""
|
|
|
|
import os
|
|
|
|
import pytest
|
|
from appium import webdriver
|
|
|
|
from utils import options, write_qdc_log
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def driver():
|
|
return webdriver.Remote(command_executor="http://127.0.0.1:4723/wd/hub", options=options)
|
|
|
|
|
|
def pytest_sessionfinish(session, exitstatus):
|
|
xml_path = getattr(session.config.option, "xmlpath", None) or "results.xml"
|
|
if os.path.exists(xml_path):
|
|
with open(xml_path) as f:
|
|
write_qdc_log("results.xml", f.read())
|