Example #1
0
def client():
    try:
        client = HECClient()
        return client
    # If no links are found, the client should raise a ValueError
    except ValueError:
        pytest.xfail("No HELIO working links found.")
Example #2
0
def client():
    working_links = list(filter(link_test, webservice_parser()))
    taverna_link = taverna_parser(working_links[0])[0]
    return HECClient(taverna_link)
Example #3
0
def client():
    link = 'http://helio.mssl.ucl.ac.uk:80/helio_hec/HelioTavernaService?wsdl'
    return HECClient(link)