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

Bumped version support down

parent 50fda425
No related branches found
No related tags found
1 merge request!115Introduced multilayer computation
This commit is part of merge request !115. Comments created here will be created in the context of that merge request.
......@@ -45,7 +45,7 @@ class TestWorkflowWriter(unittest.TestCase):
self.assertIn("version", result)
self.assertIn("workflow", result)
self.assertIn("mco", result["workflow"])
self.assertIn("data_sources", result["workflow"])
self.assertIn("execution_layers", result["workflow"])
self.assertIn("kpi_calculators", result["workflow"])
def test_write_and_read(self):
......
......@@ -9,7 +9,7 @@ from ..factory_registry_plugin import IFactoryRegistryPlugin
log = logging.getLogger(__name__)
SUPPORTED_FILE_VERSIONS = ["1", "2"]
SUPPORTED_FILE_VERSIONS = ["1"]
class InvalidFileException(Exception):
......
......@@ -2,7 +2,7 @@
"version": "1",
"workflow": {
"mco": null,
"data_sources": [
"execution_layers": [
],
"kpi_calculators": [
],
......
......@@ -8,16 +8,18 @@
]
}
},
"data_sources": [
{
"id": "force.bdss.enthought.factory.test_ds",
"model_data": {
"input_slot_maps": [
],
"output_slot_names": [
]
"execution_layers": [
[
{
"id": "force.bdss.enthought.factory.test_ds",
"model_data": {
"input_slot_maps": [
],
"output_slot_names": [
]
}
}
}
]
],
"kpi_calculators": [
{
......
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