Sergey Kraynev a2cfd49689 Add test for packages structure
Change-Id: I1f9cd14f41edc9f825d86c4867426a9805af2882
2016-08-03 14:45:26 +03:00

13 lines
363 B
Python

import os
import testtools
class UnittestBaseCiCd(testtools.TestCase):
def setUp(self):
super(UnittestBaseCiCd, self).setUp()
# TODO: should be fixed future with some common approach for all tests
root_dir = os.path.dirname(os.path.abspath(__file__)).rsplit('/', 1)[0]
self.apps_dir = os.path.join(root_dir, 'murano-apps')