コード例 #1
0
def galaxy_server():
    context.CLIARGS._store = {'ignore_certs': False}
    galaxy_api = api.GalaxyAPI(None,
                               'test_server',
                               'https://galaxy.ansible.com',
                               token=token.GalaxyToken(token='key'))
    return galaxy_api
コード例 #2
0
def galaxy_server():
    context.CLIARGS._store = {'ignore_certs': False}
    galaxy_api = api.GalaxyAPI(None, 'test_server', 'https://galaxy.ansible.com')
    galaxy_api.get_collection_signatures = MagicMock(return_value=[])
    return galaxy_api