Build: #4 failed
Job: regular file stat directio failed
Build log
The build generated 2,241 lines of output. The output is too long and has been truncated to the last 1,000 lines. Download or view full build log.
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | ____ ERROR at setup of test_timestamp[singleprovider_singleclient_directio] ____ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml' |
24-Dec-2019 05:52:58 | hosts = {} |
24-Dec-2019 05:52:58 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>> |
24-Dec-2019 05:52:58 | users = {} |
24-Dec-2019 05:52:58 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'} |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 05:52:58 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 05:52:58 | previous_env): |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | _ ERROR at setup of test_update_timestamp[singleprovider_singleclient_directio] _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml' |
24-Dec-2019 05:52:58 | hosts = {} |
24-Dec-2019 05:52:58 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>> |
24-Dec-2019 05:52:58 | users = {} |
24-Dec-2019 05:52:58 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'} |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 05:52:58 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 05:52:58 | previous_env): |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | ___ ERROR at setup of test_access_time[singleprovider_singleclient_directio] ___ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml' |
24-Dec-2019 05:52:58 | hosts = {} |
24-Dec-2019 05:52:58 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>> |
24-Dec-2019 05:52:58 | users = {} |
24-Dec-2019 05:52:58 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'} |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 05:52:58 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 05:52:58 | previous_env): |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | _ ERROR at setup of test_modification_time[singleprovider_singleclient_directio] _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml' |
24-Dec-2019 05:52:58 | hosts = {} |
24-Dec-2019 05:52:58 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>> |
24-Dec-2019 05:52:58 | users = {} |
24-Dec-2019 05:52:58 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'} |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 05:52:58 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 05:52:58 | previous_env): |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | _ ERROR at setup of test_stat_change_time_chmod[singleprovider_singleclient_directio] _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml' |
24-Dec-2019 05:52:58 | hosts = {} |
24-Dec-2019 05:52:58 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>> |
24-Dec-2019 05:52:58 | users = {} |
24-Dec-2019 05:52:58 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'} |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 05:52:58 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 05:52:58 | previous_env): |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | _ ERROR at setup of test_stat_change_time_mv[singleprovider_singleclient_directio] _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml' |
24-Dec-2019 05:52:58 | hosts = {} |
24-Dec-2019 05:52:58 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>> |
24-Dec-2019 05:52:58 | users = {} |
24-Dec-2019 05:52:58 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'} |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 05:52:58 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 05:52:58 | previous_env): |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | Sets up environment and returns environment description. |
24-Dec-2019 05:52:58 | """ |
24-Dec-2019 05:52:58 | test_type = get_test_type(request) |
24-Dec-2019 05:52:58 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 05:52:58 | previous_env) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if test_type in ['gui']: |
24-Dec-2019 05:52:58 | # For now gui tests do not use onenv patch |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return '' |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type == 'mixed': |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, '', users, |
24-Dec-2019 05:52:58 | env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | return env_desc |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 05:52:58 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 05:52:58 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | scenario = env_desc.get('scenario') |
24-Dec-2019 05:52:58 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 05:52:58 | scenario)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | patch = env_desc.get('patch') |
24-Dec-2019 05:52:58 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 05:52:58 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 05:52:58 | if start_env: |
24-Dec-2019 05:52:58 | previous_env['started'] = start_environment( |
24-Dec-2019 05:52:58 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 05:52:58 | > env_description_abs_path |
24-Dec-2019 05:52:58 | ) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | tests/conftest.py:356: |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | tests/conftest.py:455: in start_environment |
24-Dec-2019 05:52:58 | pods_cfg = check_deployment() |
24-Dec-2019 05:52:58 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 05:52:58 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 05:52:58 | return loader.get_single_data() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 05:52:58 | node = self.get_single_node() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 05:52:58 | document = self.compose_document() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 05:52:58 | node = self.compose_node(None, None) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 05:52:58 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 05:52:58 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 05:52:58 | self.current_event = self.state() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 05:52:58 | if self.check_token(KeyToken): |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 05:52:58 | self.fetch_more_tokens() |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 05:52:58 | return self.fetch_value() |
24-Dec-2019 05:52:58 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | self = <yaml.loader.Loader object at 0x7f8596531810> |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | def fetch_value(self): |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Do we determine a simple key? |
24-Dec-2019 05:52:58 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Add KEY. |
24-Dec-2019 05:52:58 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 05:52:58 | # BLOCK-MAPPING-START. |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | if self.add_indent(key.column): |
24-Dec-2019 05:52:58 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 05:52:58 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # There cannot be two simple keys one after another. |
24-Dec-2019 05:52:58 | self.allow_simple_key = False |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # It must be a part of a complex key. |
24-Dec-2019 05:52:58 | else: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # Block context needs additional checks. |
24-Dec-2019 05:52:58 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 05:52:58 | # anyway.) |
24-Dec-2019 05:52:58 | if not self.flow_level: |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | # We are allowed to start a complex value if and only if |
24-Dec-2019 05:52:58 | # we can start a simple key. |
24-Dec-2019 05:52:58 | if not self.allow_simple_key: |
24-Dec-2019 05:52:58 | raise ScannerError(None, None, |
24-Dec-2019 05:52:58 | "mapping values are not allowed here", |
24-Dec-2019 05:52:58 | > self.get_mark()) |
24-Dec-2019 05:52:58 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 05:52:58 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 05:52:58 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 05:52:58 | E ^ |
24-Dec-2019 05:52:58 | |
24-Dec-2019 05:52:58 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 05:52:58 | ========================= 12 error in 1276.69 seconds ========================== |
24-Dec-2019 05:53:09 | release "dev" deleted |
24-Dec-2019 05:53:09 | /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version! |
24-Dec-2019 05:53:09 | RequestsDependencyWarning) |
24-Dec-2019 05:53:10 | c6d3a8650e3b |
24-Dec-2019 05:53:10 | Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service |
24-Dec-2019 05:53:10 | Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service |
24-Dec-2019 05:53:10 | Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service |
24-Dec-2019 05:53:10 | Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service |
24-Dec-2019 05:53:10 | Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service |
24-Dec-2019 05:53:10 | Finished task 'Run acceptance mixed tests in Chrome' with result: Success |
24-Dec-2019 05:53:10 | Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit' |
24-Dec-2019 05:53:10 | Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD... |
24-Dec-2019 05:53:10 | Failing task since 12 failing test cases were found. |
24-Dec-2019 05:53:10 | Finished task 'Parse test results' with result: Failed |
24-Dec-2019 05:53:10 | Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script' |
24-Dec-2019 05:53:10 | Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - regular file stat directio #4 (TEST-ON2-RFSD-4)' ... running command line: /bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-9019947378004232654.sh ... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD ... using extra environment variables: bamboo_planRepository_1_branch=develop bamboo_capability_kubeadm=true bamboo_capability_system_builder_command_bash=/bin/bash bamboo_planRepository_1_branchDisplayName=develop bamboo_repository_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_resultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-RFSD-4 bamboo_capability_system_builder_command_Git=/usr/bin/git bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD bamboo_planRepository_1_name=onedata-acceptance bamboo_buildKey=TEST-ON2-RFSD bamboo_shortPlanName=oneclient-acceptance-src-test2 bamboo_capability_minikube=true bamboo_planRepository_name=onedata-acceptance bamboo_buildNumber=4 bamboo_shortJobName=regular file stat directio bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-RFSD-4 bamboo_repository_242352175_name=onedata-acceptance bamboo_repository_242352175_branch_name=develop bamboo_planRepository_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_agentId=205258755 bamboo_capability_onedata=true bamboo_planName=Testing - oneclient-acceptance-src-test2 bamboo_repository_242352175_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-812774398745237258.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-9122986912113251914.sh bamboo_shortPlanKey=ON2 bamboo_repository_242352175_git_username= bamboo_shortJobKey=RFSD bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_artifactRepoHostname=S3 bamboo_buildTimeStamp=2019-12-23T15:35:54.241Z bamboo_repository_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_1=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-5022503086671724504.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-1015457968580859532.sh bamboo_planRepository_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_2=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-8256549711635657248.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-4645079389866745878.sh bamboo_repository_git_branch=develop bamboo_buildResultKey=TEST-ON2-RFSD-4 bamboo_repository_branch_name=develop bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - regular file stat directio bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_artifactRepoPort=10161 bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh bamboo_repository_name=onedata-acceptance bamboo_buildFailed=false bamboo_capability_system_docker_executable=/usr/bin/docker bamboo_planRepository_branch=develop bamboo_agentWorkingDirectory=/home/bamboo/bamboo-agent-home/xml-data/build-dir bamboo_jobFailed=true bamboo_capability_system_git_executable=/usr/bin/git bamboo_repository_git_username= bamboo_planRepository_1_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_planRepository_branchDisplayName=develop bamboo_artifactRepoUsername=ubuntu bamboo_planRepository_1_type=bbserver bamboo_planRepository_branchName=develop bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle bamboo_plan_storageTag=plan-242221103 bamboo_hg_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_hg-repositories-cache bamboo_planRepository_1_username= bamboo_planRepository_type=bbserver bamboo_git_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_git-repositories-cache bamboo_repository_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_repository_242352175_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD bamboo_repository_242352175_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_capability_onedata_pkg_builder=true bamboo_planKey=TEST-ON2 bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_planRepository_username= bamboo_repository_242352175_git_branch=develop bamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle bamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle bamboo_artifactOpts=--hostname S3 --port 10161 --username ubuntu bamboo_planRepository_1_branchName=develop |
24-Dec-2019 05:53:10 | cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory |
24-Dec-2019 05:53:10 | mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory |
24-Dec-2019 05:53:10 | Finished task 'Pack logs' with result: Success |
24-Dec-2019 05:53:10 | Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh |
24-Dec-2019 05:53:10 | Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script' |
24-Dec-2019 05:53:10 | Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - regular file stat directio #4 (TEST-ON2-RFSD-4)' ... running command line: /bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-2737403125338497361.sh ... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD/onedata ... using extra environment variables: bamboo_planRepository_1_branch=develop bamboo_capability_kubeadm=true bamboo_capability_system_builder_command_bash=/bin/bash bamboo_planRepository_1_branchDisplayName=develop bamboo_repository_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_resultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-RFSD-4 bamboo_capability_system_builder_command_Git=/usr/bin/git bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD bamboo_planRepository_1_name=onedata-acceptance bamboo_buildKey=TEST-ON2-RFSD bamboo_shortPlanName=oneclient-acceptance-src-test2 bamboo_capability_minikube=true bamboo_planRepository_name=onedata-acceptance bamboo_buildNumber=4 bamboo_shortJobName=regular file stat directio bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-RFSD-4 bamboo_repository_242352175_name=onedata-acceptance bamboo_repository_242352175_branch_name=develop bamboo_planRepository_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_agentId=205258755 bamboo_capability_onedata=true bamboo_planName=Testing - oneclient-acceptance-src-test2 bamboo_repository_242352175_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-812774398745237258.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-9122986912113251914.sh bamboo_shortPlanKey=ON2 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_9=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-9019947378004232654.sh bamboo_repository_242352175_git_username= bamboo_shortJobKey=RFSD bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_artifactRepoHostname=S3 bamboo_buildTimeStamp=2019-12-23T15:35:54.241Z bamboo_repository_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_1=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-5022503086671724504.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-1015457968580859532.sh bamboo_planRepository_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_2=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-8256549711635657248.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFSD-4-ScriptBuildTask-4645079389866745878.sh bamboo_repository_git_branch=develop bamboo_buildResultKey=TEST-ON2-RFSD-4 bamboo_repository_branch_name=develop bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - regular file stat directio bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_artifactRepoPort=10161 bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh bamboo_repository_name=onedata-acceptance bamboo_buildFailed=false bamboo_capability_system_docker_executable=/usr/bin/docker bamboo_planRepository_branch=develop bamboo_agentWorkingDirectory=/home/bamboo/bamboo-agent-home/xml-data/build-dir bamboo_jobFailed=true bamboo_capability_system_git_executable=/usr/bin/git bamboo_repository_git_username= bamboo_planRepository_1_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_planRepository_branchDisplayName=develop bamboo_artifactRepoUsername=ubuntu bamboo_planRepository_1_type=bbserver bamboo_planRepository_branchName=develop bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle bamboo_plan_storageTag=plan-242221103 bamboo_hg_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_hg-repositories-cache bamboo_planRepository_1_username= bamboo_planRepository_type=bbserver bamboo_git_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_git-repositories-cache bamboo_repository_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_repository_242352175_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD bamboo_repository_242352175_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_capability_onedata_pkg_builder=true bamboo_planKey=TEST-ON2 bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_planRepository_username= bamboo_repository_242352175_git_branch=develop bamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle bamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle bamboo_artifactOpts=--hostname S3 --port 10161 --username ubuntu bamboo_planRepository_1_branchName=develop |
24-Dec-2019 05:53:10 | % Total % Received % Xferd Average Speed Time Time Time Current |
24-Dec-2019 05:53:10 | Dload Upload Total Spent Left Speed |
24-Dec-2019 05:53:10 | |
24-Dec-2019 05:53:10 | 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 |
24-Dec-2019 05:53:10 | 100 4419 100 4419 0 0 8228 0 --:--:-- --:--:-- --:--:-- 8244 |
24-Dec-2019 05:53:10 | Clearing /tmp/onedata and /home/bamboo/.one-env |
24-Dec-2019 05:53:11 | Cleaning helm deployments |
24-Dec-2019 05:53:11 | Cleanining pods |
24-Dec-2019 05:53:13 | Cleaning kube persistant volumes |
24-Dec-2019 05:53:13 | pod "dev-oneprovider-krakow-ready-check-x2265" deleted |
24-Dec-2019 05:53:33 | pod "dev-onezone-ready-check-bl9xl" deleted |
24-Dec-2019 05:53:40 | Cleaning dockswift container |
24-Dec-2019 05:53:40 | Cleaning docker containers |
24-Dec-2019 05:53:42 | Stalled docker containers to remove: |
24-Dec-2019 05:53:42 | ec73f6928bf1 c1e4c7b37ebe 1832a8c6ef22 ebda607f043f c6d297103289 0ce1e79b7960 ead6d0671229 3658278c480b 3ff5f4ef810b ba33c5c7ba6b 5717ead6f5ba ff0dbec02a76 0fd85c630183 28c61fcf9140 |
24-Dec-2019 05:53:42 | Removing stalled docker containers |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: ec73f6928bf1: Container ec73f6928bf1ba795a518114998de7e77222b0c913743711173591c403fb005d is not running |
24-Dec-2019 05:53:42 | ec73f6928bf1 |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: c1e4c7b37ebe: Container c1e4c7b37ebe85a0d9d04770704c07a09b1beb27841d7224852e2f8598c0fa7a is not running |
24-Dec-2019 05:53:42 | c1e4c7b37ebe |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: 1832a8c6ef22: Container 1832a8c6ef22e10bd076d0524ab9a1e8f3e335863ad2eba9add3d6e70046f71d is not running |
24-Dec-2019 05:53:42 | 1832a8c6ef22 |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: ebda607f043f: Container ebda607f043fcb612c654e6afdc31a0a602e0681a76bd1c5865edcc1a2e303df is not running |
24-Dec-2019 05:53:42 | ebda607f043f |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: c6d297103289: Container c6d2971032898133e89691238d1152cb9bc39367b14e4df59b6d910cba0962a5 is not running |
24-Dec-2019 05:53:42 | c6d297103289 |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: 0ce1e79b7960: Container 0ce1e79b79604a27e1932fde3fa04e621c5e676aeb991a00a609ace2edb2829a is not running |
24-Dec-2019 05:53:42 | 0ce1e79b7960 |
24-Dec-2019 05:53:42 | Error response from daemon: Cannot kill container: ead6d0671229: Container ead6d06712298d67fa3b7e5977eb5385cc4d0ea220941fd27a8f499ab54273f6 is not running |
24-Dec-2019 05:53:42 | ead6d0671229 |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: 3658278c480b: Container 3658278c480beaa417264b31285fbae10397dc74a08468ec3e737463cc776b67 is not running |
24-Dec-2019 05:53:43 | 3658278c480b |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: 3ff5f4ef810b: Container 3ff5f4ef810bafaffc74f64f1991f0ff0b9a1615b6d24762c93e23c005361c41 is not running |
24-Dec-2019 05:53:43 | 3ff5f4ef810b |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: ba33c5c7ba6b: Container ba33c5c7ba6b7c8d73d55a7d33cf69e414ed37c56f0f07b8c619e45ac79566e8 is not running |
24-Dec-2019 05:53:43 | ba33c5c7ba6b |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: 5717ead6f5ba: Container 5717ead6f5baea4929adc9eba1fa2c1e874a4b86017e13e52edf39583528531e is not running |
24-Dec-2019 05:53:43 | 5717ead6f5ba |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: ff0dbec02a76: Container ff0dbec02a76f6ddcf0d7d07ff569935504221c121c9fdc490158f9b2f65c6b8 is not running |
24-Dec-2019 05:53:43 | ff0dbec02a76 |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: 0fd85c630183: Container 0fd85c630183d2269641632ca021d500f1ba3fab0a6652b3ac85ad41dafcdafb is not running |
24-Dec-2019 05:53:43 | 0fd85c630183 |
24-Dec-2019 05:53:43 | Error response from daemon: Cannot kill container: 28c61fcf9140: Container 28c61fcf9140edb7cb2651f18d37f53c2290af980eb90848c8eb0526c33403f9 is not running |
24-Dec-2019 05:53:43 | 28c61fcf9140 |
24-Dec-2019 05:53:43 | Stalled docker volumes to remove: |
24-Dec-2019 05:53:43 | |
24-Dec-2019 05:53:43 | Removing stalled docker volumes |
24-Dec-2019 05:53:43 | Removing stalled loopdevices |
24-Dec-2019 05:53:44 | Done |
24-Dec-2019 05:53:44 | Finished task 'Clear env' with result: Success |
24-Dec-2019 05:53:44 | Running post build plugin 'Docker Container Cleanup' |
24-Dec-2019 05:53:44 | Running post build plugin 'NCover Results Collector' |
24-Dec-2019 05:53:44 | Running post build plugin 'Clover Results Collector' |
24-Dec-2019 05:53:44 | Running post build plugin 'npm Cache Cleanup' |
24-Dec-2019 05:53:44 | Running post build plugin 'Artifact Copier' |
24-Dec-2019 05:53:44 | Publishing an artifact: test_logs.tar.gz |
24-Dec-2019 05:53:44 | Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 8.767 ms |
24-Dec-2019 05:53:47 | Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFSD' |
24-Dec-2019 05:53:47 | Finalising the build... |
24-Dec-2019 05:53:47 | Stopping timer. |
24-Dec-2019 05:53:47 | Build TEST-ON2-RFSD-4 completed. |
24-Dec-2019 05:53:47 | Running on server: post build plugin 'NCover Results Collector' |
24-Dec-2019 05:53:47 | Running on server: post build plugin 'Build Hanging Detection Configuration' |
24-Dec-2019 05:53:47 | Running on server: post build plugin 'Clover Delta Calculator' |
24-Dec-2019 05:53:47 | Running on server: post build plugin 'Maven Dependencies Postprocessor' |
24-Dec-2019 05:53:47 | All post build plugins have finished |
24-Dec-2019 05:53:47 | Generating build results summary... |
24-Dec-2019 05:53:47 | Saving build results to disk... |
24-Dec-2019 05:53:47 | Logging substituted variables... |
24-Dec-2019 05:53:47 | Indexing build results... |
24-Dec-2019 05:53:47 | Finished building TEST-ON2-RFSD-4. |