Skip to content
Snippets Groups Projects
Commit 1575aa65 authored by Stefano Borini's avatar Stefano Borini
Browse files

Merge branch 'master' into remove-kpi

parents 8f63db8a 1e55a245
No related branches found
No related tags found
1 merge request!120Allow KPIs to be specified as datasource outputs.
...@@ -16,4 +16,4 @@ class OutputSlotInfo(HasStrictTraits): ...@@ -16,4 +16,4 @@ class OutputSlotInfo(HasStrictTraits):
#: True if the value associated to this output slot must be exported as #: True if the value associated to this output slot must be exported as
#: a KPI. #: a KPI.
kpi = Bool(False) is_kpi = Bool(False)
...@@ -61,12 +61,12 @@ class TestBaseDataSourceModel(unittest.TestCase): ...@@ -61,12 +61,12 @@ class TestBaseDataSourceModel(unittest.TestCase):
{ {
"__traits_version__": "4.6.0", "__traits_version__": "4.6.0",
"name": "baz", "name": "baz",
"kpi": False "is_kpi": False
}, },
{ {
"__traits_version__": "4.6.0", "__traits_version__": "4.6.0",
"name": "quux", "name": "quux",
"kpi": False "is_kpi": False
} }
] ]
}) })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment