aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py')
-rw-r--r--lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py b/lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py
deleted file mode 100644
index 141768cb..00000000
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py
+++ /dev/null
@@ -1,31 +0,0 @@
-'''
-Created on Feb 15, 2016
-
-__author__ = "Anibal (alimon) Limon"
-__copyright__ = "Copyright 2016, Intel Corp."
-__credits__ = ["Anibal Limon"]
-__license__ = "GPL"
-__version__ = "2.0"
-__maintainer__ = "Anibal Limon"
-__email__ = "anibal.limon@linux.intel.com"
-'''
-
-from lib.buildsteps import ShellCommandCleanEnv
-import os
-
-class ToasterRunTests(ShellCommandCleanEnv):
- haltOnFailure = True
- flunkOnFailure = True
- name = "ToasterRunTests"
-
- def __init__(self, factory, argdict=None, **kwargs):
- self.factory = factory
- self.description = "Running toaster tests..."
-
- oe_cmd = "source ./oe-init-build-env;"
- venv_cmd = "source venv/bin/activate;"
- cmd = "DISPLAY=:1 toaster-test --run-all-tests --verbose"
-
- self.command = oe_cmd + venv_cmd + cmd
-
- ShellCommandCleanEnv.__init__(self, factory, argdict, **kwargs)