view bitten/slave_tests/__init__.py @ 616:dd64ca07ecae

Move tests that can be run with only the slave modules present to a separate `slave_tests` package
author dfraser
date Wed, 05 Aug 2009 09:34:04 +0000
parents
children
line wrap: on
line source
# -*- coding: utf-8 -*-
#
# Copyright (C) 2005-2007 Christopher Lenz <cmlenz@gmx.de>
# Copyright (C) 2007 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://bitten.edgewall.org/wiki/License.

import unittest
from bitten.slave_tests import recipe, slave
from bitten.build import tests as build
from bitten.util import tests as util

def suite():
    suite = unittest.TestSuite()
    suite.addTest(recipe.suite())
    suite.addTest(slave.suite())
    suite.addTest(build.suite())
    suite.addTest(util.suite())
    return suite

if __name__ == '__main__':
    unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software