コード例 #1
0
ファイル: __init__.py プロジェクト: AndreaCensi/vehicles
def get_comptests():
    from . import unittests
    from comptests import get_comptests_app

    get_vehicles_config().load("default")
    app = get_comptests_app(get_vehicles_config())
    return [app]
コード例 #2
0
def get_comptests():
    """ Returns the list of QuickApp applications to be used as tests
        by "comptests" (in package quickapp). """
    from . import unittests
    from comptests import get_comptests_app
    app = get_comptests_app(get_diffeo2ddslearn_config())
    
    return [app, DDSLDemo1]
コード例 #3
0
ファイル: __init__.py プロジェクト: AndreaCensi/diffeoplan
def get_comptests():
    from . import unittests 
    from comptests import get_comptests_app
    app = get_comptests_app(get_dp_config())
    return [app]
コード例 #4
0
def get_comptests():
    from . import unittests
    from comptests import get_comptests_app
    app = get_comptests_app(get_dp_config())
    return [app]
コード例 #5
0
def get_comptests():
    from . import unittests
    from comptests import get_comptests_app
    get_vehicles_config().load('default')
    app = get_comptests_app(get_vehicles_config())
    return [app]
コード例 #6
0
ファイル: __init__.py プロジェクト: AndreaCensi/diffeo
def get_comptests():
    from . import unittests
    from comptests import get_comptests_app
    get_diffeo2dds_config().load('default')
    app = get_comptests_app(get_diffeo2dds_config())
    return [app]