GUI acceptance tests using environment deployed from packages.

Build: #731 failed

Job: Onezone basic failed

user sees and modifies privileges to group which is nested in his parent group[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees and modifies privileges to group which is nested in his parent group[1oz 1op deployed]" in build 731 of Onedata Products - gui acceptance pkg - Chrome onezone basic tests.
Description
user sees and modifies privileges to group which is nested in his parent group[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_basic
Method
test_user_sees_and_modifies_privileges_to_group_which_is_nested_in_his_parent_group[1oz_1op_deployed]
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

test setup failure
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT-COBTT/onedata/tests/gui/environments/1oz_1op_deployed.yaml'
hosts = {}
request = <SubRequest 'env_desc' for <Function 'test_user_adds_newly_created_children_group[1oz_1op_deployed]'>>
users = {}
previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT-COBTT/onedata/tests/gui/environments/1oz_1op_deployed.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:398: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:322: in env_desc
    env_description_abs_path
tests/conftest.py:455: in start_environment
    pods_cfg = check_deployment()
tests/conftest.py:484: in check_deployment
    status_output = yaml.load(status_output.decode('utf-8'))
/usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
    return loader.get_single_data()
/usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
    node = self.get_single_node()
/usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
    document = self.compose_document()
/usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
    node = self.compose_node(None, None)
/usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
    node = self.compose_mapping_node(anchor)
/usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
    while not self.check_event(MappingEndEvent):
/usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
    self.current_event = self.state()
/usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
    if self.check_token(KeyToken):
/usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
    self.fetch_more_tokens()
/usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
    return self.fetch_value()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

    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                   ScannerError: mapping values are not allowed here
E                     in "<unicode string>", line 1, column 90:
E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... 
E                                                            ^

/usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError