summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2015-10-17 10:45:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-27 07:23:22 +0000
commit991712f3f88759e2d68af5a3fe83c1395c4f67f6 (patch)
tree900b70e963caa69153d1ca14688801d0118120fe
parent52de2c8cd11fa743f8fd7cb0cf776eea622ac474 (diff)
downloadbitbake-991712f3f88759e2d68af5a3fe83c1395c4f67f6.tar.gz
toaster: Run tests in build mode
Now that the UI content is conditional on whether BUILD_MODE is active, modify the existing tests so that they run in this mode by default. [YOCTO #8514] Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/toaster/toastergui/tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/toaster/toastergui/tests.py b/lib/toaster/toastergui/tests.py
index 29dd7fda7..9e6c46a25 100644
--- a/lib/toaster/toastergui/tests.py
+++ b/lib/toaster/toastergui/tests.py
@@ -32,6 +32,8 @@ from orm.models import Layer_Version, Recipe, Machine, ProjectLayer, Target
from orm.models import CustomImageRecipe, ProjectVariable
from orm.models import Branch
+import toastermain
+
from toastergui.tables import SoftwareRecipesTable
import json
from bs4 import BeautifulSoup
@@ -40,6 +42,10 @@ import re
PROJECT_NAME = "test project"
CLI_BUILDS_PROJECT_NAME = 'Command line builds'
+# by default, tests are run in build mode; to run in analysis mode,
+# set this to False in individual test cases
+toastermain.settings.BUILD_MODE = True
+
class ViewTests(TestCase):
"""Tests to verify view APIs."""