Skip to content

Commit de4a445

Browse files
committed
finish accuracy test
1 parent 3b3cd3a commit de4a445

File tree

3 files changed

+400
-542
lines changed

3 files changed

+400
-542
lines changed

test/config.yaml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ reports:
77
filename: "report.html"
88
title: "UCM Pytest Test Report"
99

10-
# database:
11-
# backup: "results/"
12-
# enabled: true
13-
# host: "127.0.0.1"
14-
# port: 3306
15-
# name: "ucm_pytest"
16-
# user: "root"
17-
# password: "123456"
18-
# charset: "utf8mb4"
10+
database:
11+
backup: "results/"
12+
enabled: true
13+
host: "127.0.0.1"
14+
port: 3306
15+
name: "ucm_pytest"
16+
user: "root"
17+
password: "123456"
18+
charset: "utf8mb4"
1919

2020
# LLM Connection Configuration
2121
llm_connection:
@@ -27,5 +27,4 @@ llm_connection:
2727
timeout: 180 # request time out
2828

2929
# Offline inference configuration (for accuracy tests)
30-
model_path: "/home/models/DeepSeek-V2-Lite"
31-
ucm_storage_dir: "/home/share/qyh-test"
30+
ucm_storage_dir: "/home/share/accuracy_test"

test/conftest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ def pytest_collection_modifyitems(config, items):
3434

3535
markers = [m.split(":", 1)[0].strip() for m in config.getini("markers")]
3636
for name in markers:
37-
if name == "forked":
38-
continue
3937
opt = config.getoption(f"--{name}", "").strip()
4038
if not opt:
4139
continue

0 commit comments

Comments
 (0)