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

Build: #1076 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 1oc-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 1oc-web GUi-web GUi-RESt]" in build 1,076 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 1oc-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_1oc-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_1oc.yaml'
hosts = {}
request = <SubRequest 'env_desc' for <Function 'test_user_creates_space_using_client1_and_using_client2_he_sees_that_it_has_appeared[1oz_1op_1oc-web GUI-REST]'>>
users = {}
previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CSBT/onedata/tests/mixed/environments/1oz_1op_1oc.yaml'}

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

tests/gui/conftest.py:404: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:343: in env_desc
    env_description_abs_path
tests/conftest.py:462: in start_environment
    check_deployment()
tests/conftest.py:535: in check_deployment
    status_output = yaml.load(status_output.decode('utf-8'))
/usr/local/lib/python3.6/dist-packages/yaml/__init__.py:72: in load
    return loader.get_single_data()
/usr/local/lib/python3.6/dist-packages/yaml/constructor.py:35: in get_single_data
    node = self.get_single_node()
/usr/local/lib/python3.6/dist-packages/yaml/composer.py:36: in get_single_node
    document = self.compose_document()
/usr/local/lib/python3.6/dist-packages/yaml/composer.py:55: in compose_document
    node = self.compose_node(None, None)
/usr/local/lib/python3.6/dist-packages/yaml/composer.py:84: in compose_node
    node = self.compose_mapping_node(anchor)
/usr/local/lib/python3.6/dist-packages/yaml/composer.py:127: in compose_mapping_node
    while not self.check_event(MappingEndEvent):
/usr/local/lib/python3.6/dist-packages/yaml/parser.py:98: in check_event
    self.current_event = self.state()
/usr/local/lib/python3.6/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
    if self.check_token(KeyToken):
/usr/local/lib/python3.6/dist-packages/yaml/scanner.py:116: in check_token
    self.fetch_more_tokens()
/usr/local/lib/python3.6/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
    return self.fetch_value()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <yaml.loader.Loader object at 0x7fadee64fe10>

    def fetch_value(self):
    
        # Do we determine a simple key?
        if self.flow_level in self.possible_simple_keys:
    
            # Add KEY.
            key = self.possible_simple_keys[self.flow_level]
            del self.possible_simple_keys[self.flow_level]
            self.tokens.insert(key.token_number-self.tokens_taken,
                    KeyToken(key.mark, key.mark))
    
            # If this key starts a new block mapping, we need to add
            # BLOCK-MAPPING-START.
            if not self.flow_level:
                if self.add_indent(key.column):
                    self.tokens.insert(key.token_number-self.tokens_taken,
                            BlockMappingStartToken(key.mark, key.mark))
    
            # There cannot be two simple keys one after another.
            self.allow_simple_key = False
    
        # It must be a part of a complex key.
        else:
    
            # Block context needs additional checks.
            # (Do we really need them? They will be catched by the parser
            # anyway.)
            if not self.flow_level:
    
                # We are allowed to start a complex value if and only if
                # we can start a simple key.
                if not self.allow_simple_key:
                    raise ScannerError(None, None,
                            "mapping values are not allowed here",
>                           self.get_mark())
E                   yaml.scanner.ScannerError: mapping values are not allowed here
E                     in "<unicode string>", line 13, column 20:
E                           status += '{}{}: {}\n'.format(indent, param, fu ... 
E                                          ^

/usr/local/lib/python3.6/dist-packages/yaml/scanner.py:576: ScannerError