summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/tests.py
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-03-05 16:33:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-09 14:33:45 +0000
commit69d13dc64c3d1e5d33e6a30c89eabe509d26bdfc (patch)
treece2e3d3b448917807e926d6864055684f556ac9a /bitbake/lib/toaster/bldviewer/tests.py
parenta9cd657a01ad1158427f9539220694e77de896a2 (diff)
downloadpoky-69d13dc64c3d1e5d33e6a30c89eabe509d26bdfc.tar.gz
bitbake: toaster: delete test data
Toaster used a test fixture to verify page rendering on known data. This fixture is outdated due to changes in the data structure, and we remove it to avoid confusions about its usage. The tests using this data are now disabled. (Bitbake rev: 8fda1b66e695ccdf98ae1c34a0bd655be2878188) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/tests.py')
-rw-r--r--bitbake/lib/toaster/bldviewer/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldviewer/tests.py b/bitbake/lib/toaster/bldviewer/tests.py
index 761165b8a4..5be0b8bb9e 100644
--- a/bitbake/lib/toaster/bldviewer/tests.py
+++ b/bitbake/lib/toaster/bldviewer/tests.py
@@ -13,7 +13,10 @@ import json, os, re, urllib, shlex
13 13
14 14
15class Tests(TestCase): 15class Tests(TestCase):
16 fixtures = ['orm_views_testdata.json'] 16 # fixtures = ['orm_views_testdata.json']
17
18 def setUp(self):
19 raise Exception("The %s test data is not longer valid, tests disabled" % __name__)
17 20
18 def test_builds(self): 21 def test_builds(self):
19 client = Client() 22 client = Client()