Skip to content
This repository was archived by the owner on Jan 24, 2024. It is now read-only.

Commit 91ed483

Browse files
authored
fea/change_actived_false (#34)
1 parent 654af7b commit 91ed483

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

kpi.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self,
1717
desc='',
1818
out_file=None,
1919
his_file=None,
20-
actived=True,
20+
actived=False,
2121
unit_repr=None):
2222
''' Interface for Kpi tracker.
2323
actived: whether this test is turn on
@@ -86,7 +86,7 @@ def __init__(self,
8686
name,
8787
diff_thre,
8888
skip_head=2,
89-
actived=True,
89+
actived=False,
9090
unit_repr=None,
9191
desc=None):
9292
'''
@@ -169,7 +169,7 @@ def __init__(self,
169169
name,
170170
diff_thre,
171171
skip_head=2,
172-
actived=True,
172+
actived=False,
173173
unit_repr=None,
174174
desc=None):
175175
'''

persistence.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
db = MongoDB(config.db_name)
99

1010

11-
def add_evaluation_record(commitid, date, task, passed, infos, kpis,
12-
kpi_types, kpi_objs):
11+
def add_evaluation_record(commitid, date, task, passed, infos, kpis, kpi_types,
12+
kpi_objs):
1313
'''
1414
persist the evaluation infomation of a task to the database.
1515

0 commit comments

Comments
 (0)