summaryrefslogtreecommitdiff
path: root/test-cli/test/runners/simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test/runners/simple.py')
-rw-r--r--test-cli/test/runners/simple.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test-cli/test/runners/simple.py b/test-cli/test/runners/simple.py
index 3537d0e..084a5b8 100644
--- a/test-cli/test/runners/simple.py
+++ b/test-cli/test/runners/simple.py
@@ -89,12 +89,6 @@ class TextTestResult(unittest.TestResult):
dbdata['name'] = test.shortDescription()
dbdata['result'] = self.result
dbdata['msg'] = str(test.longMessage)
- #DB: INSERT IN THE DATABASE
- filename='test_results.dat'
- testResult = open(filename, 'a')
- testResult.write(str(dbdata))
- testResult.write("\n")
- testResult.close()
#CONVERT FANCY FAIL AND PASS
if self.result==self.PASS: simple_result="TRUE"
if self.result == self.FAIL: simple_result = "FALSE"