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

Build: #321 failed

Job: Spaces basic failed

user invites other user to space using client1 that user joins to space using client2 and using client3 he sees that he has joined to new space[1oz 1op deployed-web GUi-web GUi-RESt]: Test case result

The below summarizes the result of the test " user invites other user to space using client1 that user joins to space using client2 and using client3 he sees that he has joined to new space[1oz 1op deployed-web GUi-web GUi-RESt]" in build 321 of Onedata Products - mixed acceptance pkg - Chrome spaces basic tests.
Description
user invites other user to space using client1 that user joins to space using client2 and using client3 he sees that he has joined to new space[1oz 1op deployed-web GUi-web GUi-RESt]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_invites_other_user_to_space_using_client1_that_user_joins_to_space_using_client2_and_using_client3_he_sees_that_he_has_joined_to_new_space[1oz_1op_deployed-web GUI-web GUI-REST]
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

test setup failure
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CSBT/onedata/tests/mixed/environments/1oz_1op_deployed.yaml'
hosts = {}
request = <SubRequest 'env_desc' for <Function 'test_admin_user_adds_other_user_to_space_using_client1_and_that_user_using_client2_sees_that_he_has_been_added[1oz_1op_deployed]'>>
users = {}

    @fixture(scope='session')
    def env_desc(env_description_abs_path, hosts, request, users, ):
        from tests.conftest import env_desc
>       return env_desc(env_description_abs_path, hosts, request, users)

tests/gui/conftest.py:388: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:250: in env_desc
    users, env_description_abs_path)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

scenario_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CSBT/onedata/tests/mixed/environments/1oz_1op_deployed.yaml'
request = <SubRequest 'env_desc' for <Function 'test_admin_user_adds_other_user_to_space_using_client1_and_that_user_using_client2_sees_that_he_has_been_added[1oz_1op_deployed]'>>
hosts = {}, patch_path = '', users = {}
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CSBT/onedata/tests/mixed/environments/1oz_1op_deployed.yaml'

    def start_environment(scenario_path, request, hosts, patch_path,
                          users, env_description_abs_path):
        init_helm()
        clean = False if request.config.getoption('--no-clean') else True
    
        if clean:
            up_args = parse_up_args(request, scenario_path)
            _, ret = run_onenv_command('up', up_args)
            if ret != 0:
                handle_env_init_error(request, env_description_abs_path, 'up')
    
            wait_args = parse_wait_args(request)
            run_onenv_command('wait', wait_args)
    
        status_output, _ = run_onenv_command('status')
        status_output = yaml.load(status_output.decode('utf-8'))
    
>       env_ready = status_output.get('ready')
E       AttributeError: 'NoneType' object has no attribute 'get'

tests/conftest.py:343: AttributeError