summaryrefslogtreecommitdiffstats
path: root/testing-scheduler/server/src/conductor_processor/task.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing-scheduler/server/src/conductor_processor/task.py')
-rw-r--r--testing-scheduler/server/src/conductor_processor/task.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/testing-scheduler/server/src/conductor_processor/task.py b/testing-scheduler/server/src/conductor_processor/task.py
deleted file mode 100644
index 6f25aef8..00000000
--- a/testing-scheduler/server/src/conductor_processor/task.py
+++ /dev/null
@@ -1,28 +0,0 @@
-##############################################################################
-# Copyright (c) 2018 Huawei Technologies Co.,Ltd. and others
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-import json
-import os
-
-
-class TaskFile(object):
- def __init__(self, taskName='task_0'):
- self._defaultConfFile = self._getFilePath("defaultTaskFile.json")
- with open(self._defaultConfFile) as defaultConf:
- self._jsonObj = json.load(defaultConf)
- self._jsonObj['name'] = taskName
-
- def generateFromStep(self, stepObject):
- self._jsonObj['name'] = stepObject.getName()
- print "taskFile:", self._jsonObj['name']
- return self._jsonObj
-
- def _getFilePath(self, fileName):
- dirPath = os.path.dirname(os.path.realpath(__file__))
- return os.path.join(dirPath, fileName)