Commit 85c2edc7 authored by Łukasz Nowak's avatar Łukasz Nowak

Workaround: force test run in order to pickup tests from BT5.

parent 37809bbb
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2012 Nexedi SA and Contributors. All Rights Reserved.
#
##############################################################################
import Products.Vifib.tests.VifibMixin
class testSlapOSMixin(Products.Vifib.tests.VifibMixin.testVifibMixin):
pass
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2012 Nexedi SA and Contributors. All Rights Reserved.
#
##############################################################################
import unittest
from SlapOSMixin import testSlapOSMixin
class TestSlapOSDummy(testSlapOSMixin):
run_all_test = 1
def test(self):
self.assertTrue(True)
def getTitle(self):
return "Dummy tests in order to have tests from BT5 run"
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestSlapOSDummy))
return suite
......@@ -27,5 +27,6 @@ class VIFIB(SavedTestSuite, ProjectTestSuite):
]
class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
_saved_test_id = 'Products.Vifib.tests.VifibMixin.testVifibMixin'
_product_list = ['SlapOS']
_saved_test_id = 'Products.SlapOS.tests.SlapOSMixin.testSlapOSMixin'
_bt_list = ['slapos_cloud']
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment