Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #9 failed

Job: Onepanel failed

user changes provider name and domain using client2 and he sees in client1 that they have changed[web GUi-RESt]: Test case result

The below summarizes the result of the test " user changes provider name and domain using client2 and he sees in client1 that they have changed[web GUi-RESt]" in build 9 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user changes provider name and domain using client2 and he sees in client1 that they have changed[web GUi-RESt]
Test class
mixed_swaggers.scenarios.test_onepanel_basic
Method
test_user_changes_provider_name_and_domain_using_client2_and_he_sees_in_client1_that_they_have_changed[web GUI-REST]
Duration
12 secs
Status
Failed (Existing Failure)

Error Log

RuntimeError: Couldn't find provider named "dev-oneprovider-krakow"
client1 = 'web GUI', client2 = 'REST'
request = <FixtureRequest for <Function 'test_user_changes_provider_name_and_domain_using_client2_and_he_sees_in_client1_that_they_have_changed[web GUI-REST]'>>

    from tests.gui.steps.oneprovider.common import *
>   from tests.gui.steps.oneprovider.data_tab import *

tests/mixed_swaggers/scenarios/test_onepanel_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
tests/mixed_swaggers/steps/space_basic.py:380: in assert_provider_has_given_name_and_known_hostname_in_oz
    hosts[provider]['hostname'])
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user = 'user1'
users = {'admin': UserCredentials(username='admin', password='password', id=u'db2952afb79ca94353...ODYyMTcyNAowMDJmc2lnbmF00dX...='password', id=u'a4a7eee9db8239b7c3...U1ODYyMTcyNQowMDJmc2lnbmF00dXJlIJYeXF3r3HSeb7TaLIYmG4xTU6VxeIKNrKpShawPsuq9Cg')}
host_name = 'onezone'
hosts = {'oneprovider-1': {'container_id': '696d4a251fee0c7f0b824eba8bd1035db5e7489bc8db5946f10344d2e6fa5945', 'hostname': 'de...2b165d8826c2622', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.32.0.13', 'name': 'dev-onezone', ...}}
provider_alias = 'oneprovider-1'
domain = 'dev-oneprovider-krakow.default.svc.cluster.local'

    def assert_provider_has_name_and_hostname_in_oz_rest(user, users, host_name,
                                                         hosts, provider_alias,
                                                         domain):
        user_client = login_to_oz(user, users[user].password,
                                  hosts[host_name]['hostname'])
        provider_name = hosts[provider_alias]['name']
    
        provider_api = ProviderApi(user_client)
        providers = provider_api.oz_providers_list().providers
    
        for pid in providers:
            provider = provider_api.get_provider_details(pid)
            if provider.name == provider_name:
                assert provider.domain == domain, 'Provider has domain {} instead' \
                                                  ' of {}'.format(provider.domain,
                                                                  domain)
                break
        else:
            raise RuntimeError('Couldn\'t find provider '
>                              'named "{}"'.format(provider_name))
E           RuntimeError: Couldn't find provider named "dev-oneprovider-krakow"

tests/mixed_swaggers/utils/onezone/provider.py:29: RuntimeError