Build: #17 failed
Job: multiprovider proxy s3 regular file stat proxyio failed
Build log
The build generated 2,585 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 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | _ ERROR at setup of test_update_timestamp_without_permission[multiprovider_proxy_s3] _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml' |
24-Dec-2019 12:11:15 | hosts = {} |
24-Dec-2019 12:11:15 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[multiprovider_proxy_s3]'>> |
24-Dec-2019 12:11:15 | users = {} |
24-Dec-2019 12:11:15 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml'} |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 12:11:15 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 12:11:15 | previous_env): |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | Sets up environment and returns environment description. |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | test_type = get_test_type(request) |
24-Dec-2019 12:11:15 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 12:11:15 | previous_env) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if test_type in ['gui']: |
24-Dec-2019 12:11:15 | # For now gui tests do not use onenv patch |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return '' |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type == 'mixed': |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return env_desc |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | _ ERROR at setup of test_update_timestamp_with_permission[multiprovider_proxy_s3] _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml' |
24-Dec-2019 12:11:15 | hosts = {} |
24-Dec-2019 12:11:15 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[multiprovider_proxy_s3]'>> |
24-Dec-2019 12:11:15 | users = {} |
24-Dec-2019 12:11:15 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml'} |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 12:11:15 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 12:11:15 | previous_env): |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | Sets up environment and returns environment description. |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | test_type = get_test_type(request) |
24-Dec-2019 12:11:15 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 12:11:15 | previous_env) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if test_type in ['gui']: |
24-Dec-2019 12:11:15 | # For now gui tests do not use onenv patch |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return '' |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type == 'mixed': |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return env_desc |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | __________ ERROR at setup of test_access_time[multiprovider_proxy_s3] __________ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml' |
24-Dec-2019 12:11:15 | hosts = {} |
24-Dec-2019 12:11:15 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[multiprovider_proxy_s3]'>> |
24-Dec-2019 12:11:15 | users = {} |
24-Dec-2019 12:11:15 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml'} |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 12:11:15 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 12:11:15 | previous_env): |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | Sets up environment and returns environment description. |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | test_type = get_test_type(request) |
24-Dec-2019 12:11:15 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 12:11:15 | previous_env) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if test_type in ['gui']: |
24-Dec-2019 12:11:15 | # For now gui tests do not use onenv patch |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return '' |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type == 'mixed': |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return env_desc |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | _______ ERROR at setup of test_modification_time[multiprovider_proxy_s3] _______ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml' |
24-Dec-2019 12:11:15 | hosts = {} |
24-Dec-2019 12:11:15 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[multiprovider_proxy_s3]'>> |
24-Dec-2019 12:11:15 | users = {} |
24-Dec-2019 12:11:15 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml'} |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 12:11:15 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 12:11:15 | previous_env): |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | Sets up environment and returns environment description. |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | test_type = get_test_type(request) |
24-Dec-2019 12:11:15 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 12:11:15 | previous_env) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if test_type in ['gui']: |
24-Dec-2019 12:11:15 | # For now gui tests do not use onenv patch |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return '' |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type == 'mixed': |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return env_desc |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | ____ ERROR at setup of test_stat_change_time_chmod[multiprovider_proxy_s3] _____ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml' |
24-Dec-2019 12:11:15 | hosts = {} |
24-Dec-2019 12:11:15 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[multiprovider_proxy_s3]'>> |
24-Dec-2019 12:11:15 | users = {} |
24-Dec-2019 12:11:15 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml'} |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 12:11:15 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 12:11:15 | previous_env): |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | Sets up environment and returns environment description. |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | test_type = get_test_type(request) |
24-Dec-2019 12:11:15 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 12:11:15 | previous_env) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if test_type in ['gui']: |
24-Dec-2019 12:11:15 | # For now gui tests do not use onenv patch |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return '' |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type == 'mixed': |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return env_desc |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | _ ERROR at setup of test_stat_change_time_mv_on_posix[multiprovider_proxy_s3] __ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml' |
24-Dec-2019 12:11:15 | hosts = {} |
24-Dec-2019 12:11:15 | request = <SubRequest 'env_desc' for <Function 'test_type_empty[multiprovider_proxy_s3]'>> |
24-Dec-2019 12:11:15 | users = {} |
24-Dec-2019 12:11:15 | previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP/onedata/tests/oneclient/environments/multiprovider_proxy_s3.yaml'} |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | @pytest.fixture(scope='module', autouse=True) |
24-Dec-2019 12:11:15 | def env_desc(env_description_abs_path, hosts, request, users, |
24-Dec-2019 12:11:15 | previous_env): |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | Sets up environment and returns environment description. |
24-Dec-2019 12:11:15 | """ |
24-Dec-2019 12:11:15 | test_type = get_test_type(request) |
24-Dec-2019 12:11:15 | start_env = _check_if_should_start_new_env(env_description_abs_path, |
24-Dec-2019 12:11:15 | previous_env) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if test_type in ['gui']: |
24-Dec-2019 12:11:15 | # For now gui tests do not use onenv patch |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | env_description_abs_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return '' |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type == 'mixed': |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, '', users, |
24-Dec-2019 12:11:15 | env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | return env_desc |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | elif test_type in ['oneclient', 'onedata_fs', 'performance']: |
24-Dec-2019 12:11:15 | with open(env_description_abs_path, 'r') as env_desc_file: |
24-Dec-2019 12:11:15 | env_desc = yaml.load(env_desc_file) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | scenario = env_desc.get('scenario') |
24-Dec-2019 12:11:15 | scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | scenario_path = os.path.abspath(os.path.join(scenarios_dir_path, |
24-Dec-2019 12:11:15 | scenario)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | patch = env_desc.get('patch') |
24-Dec-2019 12:11:15 | patch_dir_path = PATCHES_DIR.get(get_test_type(request)) |
24-Dec-2019 12:11:15 | patch_path = os.path.join(patch_dir_path, patch) |
24-Dec-2019 12:11:15 | if start_env: |
24-Dec-2019 12:11:15 | previous_env['started'] = start_environment( |
24-Dec-2019 12:11:15 | scenario_path, request, hosts, patch_path, users, |
24-Dec-2019 12:11:15 | > env_description_abs_path |
24-Dec-2019 12:11:15 | ) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | tests/conftest.py:356: |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | tests/conftest.py:455: in start_environment |
24-Dec-2019 12:11:15 | pods_cfg = check_deployment() |
24-Dec-2019 12:11:15 | tests/conftest.py:484: in check_deployment |
24-Dec-2019 12:11:15 | status_output = yaml.load(status_output.decode('utf-8')) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load |
24-Dec-2019 12:11:15 | return loader.get_single_data() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data |
24-Dec-2019 12:11:15 | node = self.get_single_node() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node |
24-Dec-2019 12:11:15 | document = self.compose_document() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document |
24-Dec-2019 12:11:15 | node = self.compose_node(None, None) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node |
24-Dec-2019 12:11:15 | node = self.compose_mapping_node(anchor) |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node |
24-Dec-2019 12:11:15 | while not self.check_event(MappingEndEvent): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event |
24-Dec-2019 12:11:15 | self.current_event = self.state() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key |
24-Dec-2019 12:11:15 | if self.check_token(KeyToken): |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token |
24-Dec-2019 12:11:15 | self.fetch_more_tokens() |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens |
24-Dec-2019 12:11:15 | return self.fetch_value() |
24-Dec-2019 12:11:15 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | self = <yaml.loader.Loader object at 0x7fdb6a686510> |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | def fetch_value(self): |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Do we determine a simple key? |
24-Dec-2019 12:11:15 | if self.flow_level in self.possible_simple_keys: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Add KEY. |
24-Dec-2019 12:11:15 | key = self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | del self.possible_simple_keys[self.flow_level] |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | KeyToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # If this key starts a new block mapping, we need to add |
24-Dec-2019 12:11:15 | # BLOCK-MAPPING-START. |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | if self.add_indent(key.column): |
24-Dec-2019 12:11:15 | self.tokens.insert(key.token_number-self.tokens_taken, |
24-Dec-2019 12:11:15 | BlockMappingStartToken(key.mark, key.mark)) |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # There cannot be two simple keys one after another. |
24-Dec-2019 12:11:15 | self.allow_simple_key = False |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # It must be a part of a complex key. |
24-Dec-2019 12:11:15 | else: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # Block context needs additional checks. |
24-Dec-2019 12:11:15 | # (Do we really need them? They will be catched by the parser |
24-Dec-2019 12:11:15 | # anyway.) |
24-Dec-2019 12:11:15 | if not self.flow_level: |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | # We are allowed to start a complex value if and only if |
24-Dec-2019 12:11:15 | # we can start a simple key. |
24-Dec-2019 12:11:15 | if not self.allow_simple_key: |
24-Dec-2019 12:11:15 | raise ScannerError(None, None, |
24-Dec-2019 12:11:15 | "mapping values are not allowed here", |
24-Dec-2019 12:11:15 | > self.get_mark()) |
24-Dec-2019 12:11:15 | E ScannerError: mapping values are not allowed here |
24-Dec-2019 12:11:15 | E in "<unicode string>", line 1, column 90: |
24-Dec-2019 12:11:15 | E ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ... |
24-Dec-2019 12:11:15 | E ^ |
24-Dec-2019 12:11:15 | |
24-Dec-2019 12:11:15 | /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError |
24-Dec-2019 12:11:15 | ==================== 1 skipped, 14 error in 1279.11 seconds ==================== |
24-Dec-2019 12:11:18 | release "dev" deleted |
24-Dec-2019 12:11:19 | /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 12:11:19 | RequestsDependencyWarning) |
24-Dec-2019 12:11:19 | 26a3a2ba6da5 |
24-Dec-2019 12:11:19 | Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service |
24-Dec-2019 12:11:19 | Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service |
24-Dec-2019 12:11:19 | Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service |
24-Dec-2019 12:11:19 | Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service |
24-Dec-2019 12:11:19 | Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service |
24-Dec-2019 12:11:19 | make: *** [test_oneclient_src] Error 1 |
24-Dec-2019 12:11:19 | Makefile:105: recipe for target 'test_oneclient_src' failed |
24-Dec-2019 12:11:19 | Failing task since return code of [/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-3026762283922714870.sh] was 2 while expected 0 |
24-Dec-2019 12:11:19 | Finished task 'Run acceptance mixed tests in Chrome' with result: Failed |
24-Dec-2019 12:11:19 | Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit' |
24-Dec-2019 12:11:19 | Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP... |
24-Dec-2019 12:11:19 | Failing task since 14 failing test cases were found. |
24-Dec-2019 12:11:19 | Finished task 'Parse test results' with result: Failed |
24-Dec-2019 12:11:19 | Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script' |
24-Dec-2019 12:11:19 | Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider proxy s3 regular file stat proxyio #17 (TEST-OCAST-MPSRFSP-17)' ... running command line: /bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-8838207556244511449.sh ... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP ... 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-OCAST-MPSRFSP-17 bamboo_repository_222199898_git_branch=develop bamboo_capability_system_builder_command_Git=/usr/bin/git bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP bamboo_planRepository_1_name=onedata-acceptance bamboo_buildKey=TEST-OCAST-MPSRFSP bamboo_shortPlanName=oneclient-acceptance-src-test bamboo_capability_minikube=true bamboo_planRepository_name=onedata-acceptance bamboo_buildNumber=17 bamboo_shortJobName=multiprovider proxy s3 regular file stat proxyio bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MPSRFSP-17 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-test bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-3026762283922714870.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-2958568791180815487.sh bamboo_shortPlanKey=OCAST bamboo_shortJobKey=MPSRFSP bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_artifactRepoHostname=S3 bamboo_buildTimeStamp=2019-12-23T15:37:08.371Z 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-OCAST-MPSRFSP-17-ScriptBuildTask-1406708648758929328.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-7952155966416161638.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-OCAST-MPSRFSP-17-ScriptBuildTask-6161268042313629976.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-7254451566448324091.sh bamboo_repository_git_branch=develop bamboo_buildResultKey=TEST-OCAST-MPSRFSP-17 bamboo_repository_branch_name=develop bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider proxy s3 regular file stat proxyio 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=true bamboo_repository_222199898_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_capability_system_docker_executable=/usr/bin/docker bamboo_repository_222199898_name=onedata-acceptance 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_repository_222199898_branch_name=develop bamboo_planRepository_branchDisplayName=develop bamboo_artifactRepoUsername=ubuntu bamboo_planRepository_1_type=bbserver bamboo_planRepository_branchName=develop bamboo_repository_222199898_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle bamboo_repository_222199898_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_plan_storageTag=plan-222068858 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_222199898_git_username= bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP bamboo_capability_onedata_pkg_builder=true bamboo_planKey=TEST-OCAST bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_planRepository_username= 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 12:11:19 | cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory |
24-Dec-2019 12:11:19 | mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory |
24-Dec-2019 12:11:19 | Finished task 'Pack logs' with result: Success |
24-Dec-2019 12:11:19 | Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh |
24-Dec-2019 12:11:19 | Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script' |
24-Dec-2019 12:11:19 | Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider proxy s3 regular file stat proxyio #17 (TEST-OCAST-MPSRFSP-17)' ... running command line: /bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-1948279558141513078.sh ... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP ... 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-OCAST-MPSRFSP-17 bamboo_repository_222199898_git_branch=develop bamboo_capability_system_builder_command_Git=/usr/bin/git bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP bamboo_planRepository_1_name=onedata-acceptance bamboo_buildKey=TEST-OCAST-MPSRFSP bamboo_shortPlanName=oneclient-acceptance-src-test bamboo_capability_minikube=true bamboo_planRepository_name=onedata-acceptance bamboo_buildNumber=17 bamboo_shortJobName=multiprovider proxy s3 regular file stat proxyio bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MPSRFSP-17 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-test bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-3026762283922714870.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-2958568791180815487.sh bamboo_shortPlanKey=OCAST bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_9=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-8838207556244511449.sh bamboo_shortJobKey=MPSRFSP bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_artifactRepoHostname=S3 bamboo_buildTimeStamp=2019-12-23T15:37:08.371Z 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-OCAST-MPSRFSP-17-ScriptBuildTask-1406708648758929328.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-7952155966416161638.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-OCAST-MPSRFSP-17-ScriptBuildTask-6161268042313629976.sh bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MPSRFSP-17-ScriptBuildTask-7254451566448324091.sh bamboo_repository_git_branch=develop bamboo_buildResultKey=TEST-OCAST-MPSRFSP-17 bamboo_repository_branch_name=develop bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider proxy s3 regular file stat proxyio 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=true bamboo_repository_222199898_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf bamboo_capability_system_docker_executable=/usr/bin/docker bamboo_repository_222199898_name=onedata-acceptance 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_repository_222199898_branch_name=develop bamboo_planRepository_branchDisplayName=develop bamboo_artifactRepoUsername=ubuntu bamboo_planRepository_1_type=bbserver bamboo_planRepository_branchName=develop bamboo_repository_222199898_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle bamboo_repository_222199898_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6 bamboo_plan_storageTag=plan-222068858 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_222199898_git_username= bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP bamboo_capability_onedata_pkg_builder=true bamboo_planKey=TEST-OCAST bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git bamboo_planRepository_username= 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 12:11:19 | % Total % Received % Xferd Average Speed Time Time Time Current |
24-Dec-2019 12:11:19 | Dload Upload Total Spent Left Speed |
24-Dec-2019 12:11:19 | |
24-Dec-2019 12:11:20 | 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 |
24-Dec-2019 12:11:20 | Clearing /tmp/onedata and /home/bamboo/.one-env |
24-Dec-2019 12:11:20 | 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 |
24-Dec-2019 12:11:20 | 100 4419 100 4419 0 0 7706 0 --:--:-- --:--:-- --:--:-- 7698 |
24-Dec-2019 12:11:20 | Unable to find image 'alpine:latest' locally |
24-Dec-2019 12:11:22 | latest: Pulling from library/alpine |
24-Dec-2019 12:11:22 | 63bc94deeb28: Pulling fs layer |
24-Dec-2019 12:11:23 | 63bc94deeb28: Verifying Checksum |
24-Dec-2019 12:11:23 | 63bc94deeb28: Download complete |
24-Dec-2019 12:11:23 | 63bc94deeb28: Pull complete |
24-Dec-2019 12:11:23 | Digest: sha256:7c92a2c6bbcb6b6beff92d0a940779769c2477b807c202954c537e2e0deb9bed |
24-Dec-2019 12:11:23 | Status: Downloaded newer image for alpine:latest |
24-Dec-2019 12:11:24 | Cleaning helm deployments |
24-Dec-2019 12:11:24 | Cleanining pods |
24-Dec-2019 12:11:26 | Cleaning kube persistant volumes |
24-Dec-2019 12:11:26 | pod "dev-oneprovider-krakow-ready-check-wj9kf" deleted |
24-Dec-2019 12:11:46 | pod "dev-oneprovider-paris-ready-check-v9wxb" deleted |
24-Dec-2019 12:12:00 | Error from server (NotFound): pods "dev-onezone-ready-check-x2dcp" not found |
24-Dec-2019 12:12:00 | pod "dev-volume-s3-krakow-6bb7fd865c-l9jvg" deleted |
24-Dec-2019 12:12:00 | Error from server (NotFound): pods "dev-volume-s3-paris-84d646df9f-9sjbr" not found |
24-Dec-2019 12:12:01 | Cleaning dockswift container |
24-Dec-2019 12:12:01 | Cleaning docker containers |
24-Dec-2019 12:12:02 | Stalled docker containers to remove: |
24-Dec-2019 12:12:02 | db3540f55598 760a35d72df5 12f8e0093bd5 967c238bbb24 3dced9b08953 08b9e641b3d9 317b813d5419 2d23ca72e2ca 2166f518cf4f 8a9d4f5ab75b 495d8a9d45ff 9c9c80d469d2 a4008e1df946 33100267384a 42a79df7f8ef d0f19b789369 |
24-Dec-2019 12:12:02 | Removing stalled docker containers |
24-Dec-2019 12:12:02 | Error response from daemon: Cannot kill container: db3540f55598: Container db3540f55598429ece174b9e650d1d7396e6bb324c57a48d11c9818215a1be68 is not running |
24-Dec-2019 12:12:02 | db3540f55598 |
24-Dec-2019 12:12:02 | Error response from daemon: Cannot kill container: 760a35d72df5: Container 760a35d72df517f7e469feb47aeca9753b621b8791b3a22fbb6f756e5619d82d is not running |
24-Dec-2019 12:12:03 | 760a35d72df5 |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 12f8e0093bd5: Container 12f8e0093bd50eb2c31c6f1563568928fa46b310844f94c2888111ad5698cb28 is not running |
24-Dec-2019 12:12:03 | 12f8e0093bd5 |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 967c238bbb24: Container 967c238bbb2494d5b6fb0bb16d5790ce741895cd065017a524280e4a1dddfc5f is not running |
24-Dec-2019 12:12:03 | 967c238bbb24 |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 3dced9b08953: Container 3dced9b089530fd7f2302eca567cac48273e160acc46b98c51595f027b1ca3a5 is not running |
24-Dec-2019 12:12:03 | 3dced9b08953 |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 08b9e641b3d9: Container 08b9e641b3d9752846c3146f65ecff51c578f18002950e507b11a49061e06384 is not running |
24-Dec-2019 12:12:03 | 08b9e641b3d9 |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 317b813d5419: Container 317b813d5419696fb9dd8b5da11b8f784fd32d3cd4d27751ed728ddaa72bf72a is not running |
24-Dec-2019 12:12:03 | 317b813d5419 |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 2d23ca72e2ca: Container 2d23ca72e2caffccc7b3329f776301f40a8e5497cfe41ae67d348ab790b8ef06 is not running |
24-Dec-2019 12:12:03 | 2d23ca72e2ca |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 2166f518cf4f: Container 2166f518cf4fd5dc75cb767272bc4aa5191632c43b1c1146fce37fa5a4ea15c5 is not running |
24-Dec-2019 12:12:03 | 2166f518cf4f |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 8a9d4f5ab75b: Container 8a9d4f5ab75b3ebcab72c1870f830d2175128d6ee787ed2478f7ad433776a896 is not running |
24-Dec-2019 12:12:03 | 8a9d4f5ab75b |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 495d8a9d45ff: Container 495d8a9d45ff67c488756c085cf4e5b450d518e68f5cb22d4e6bfc9904b58482 is not running |
24-Dec-2019 12:12:03 | 495d8a9d45ff |
24-Dec-2019 12:12:03 | Error response from daemon: Cannot kill container: 9c9c80d469d2: Container 9c9c80d469d247e877f62c4d3e9c99c42e2a3d29f076f9dba8832e3feb7fde88 is not running |
24-Dec-2019 12:12:04 | 9c9c80d469d2 |
24-Dec-2019 12:12:04 | Error response from daemon: Cannot kill container: a4008e1df946: Container a4008e1df9460ba2931e93b757c1ae6457d0a0c61d960b18c568ce765508374d is not running |
24-Dec-2019 12:12:04 | a4008e1df946 |
24-Dec-2019 12:12:04 | Error response from daemon: Cannot kill container: 33100267384a: Container 33100267384aaea0eeb3c32bc8a1b258a343608a542a9959a741e8d7edf2dbd4 is not running |
24-Dec-2019 12:12:04 | 33100267384a |
24-Dec-2019 12:12:04 | Error response from daemon: Cannot kill container: 42a79df7f8ef: Container 42a79df7f8efcfb8fd9d897b33b87655d5fc6e4f6fd2c646f6c0fb2ff4d4d3a5 is not running |
24-Dec-2019 12:12:04 | 42a79df7f8ef |
24-Dec-2019 12:12:04 | Error response from daemon: Cannot kill container: d0f19b789369: Container d0f19b78936967099c58cbc05da146c3c2655041249e154a217bbc57963d7e01 is not running |
24-Dec-2019 12:12:04 | d0f19b789369 |
24-Dec-2019 12:12:04 | Stalled docker volumes to remove: |
24-Dec-2019 12:12:04 | |
24-Dec-2019 12:12:04 | Removing stalled docker volumes |
24-Dec-2019 12:12:04 | Removing stalled loopdevices |
24-Dec-2019 12:12:04 | Unable to find image 'ubuntu:14.10' locally |
24-Dec-2019 12:12:06 | 14.10: Pulling from library/ubuntu |
24-Dec-2019 12:12:06 | b0efe5c05b4c: Pulling fs layer |
24-Dec-2019 12:12:06 | 0a1f1b169319: Pulling fs layer |
24-Dec-2019 12:12:06 | 1ceb0a3c7c48: Pulling fs layer |
24-Dec-2019 12:12:06 | a3ed95caeb02: Pulling fs layer |
24-Dec-2019 12:12:06 | a3ed95caeb02: Waiting |
24-Dec-2019 12:12:06 | 1ceb0a3c7c48: Verifying Checksum |
24-Dec-2019 12:12:06 | 1ceb0a3c7c48: Download complete |
24-Dec-2019 12:12:06 | 0a1f1b169319: Verifying Checksum |
24-Dec-2019 12:12:06 | 0a1f1b169319: Download complete |
24-Dec-2019 12:12:07 | a3ed95caeb02: Verifying Checksum |
24-Dec-2019 12:12:07 | a3ed95caeb02: Download complete |
24-Dec-2019 12:12:07 | b0efe5c05b4c: Verifying Checksum |
24-Dec-2019 12:12:07 | b0efe5c05b4c: Download complete |
24-Dec-2019 12:12:11 | b0efe5c05b4c: Pull complete |
24-Dec-2019 12:12:11 | 0a1f1b169319: Pull complete |
24-Dec-2019 12:12:11 | 1ceb0a3c7c48: Pull complete |
24-Dec-2019 12:12:11 | a3ed95caeb02: Pull complete |
24-Dec-2019 12:12:11 | Digest: sha256:6341c688b4b0b82ec735389b3c97df8cf2831b8cb8bd1856779130a86574ac5c |
24-Dec-2019 12:12:11 | Status: Downloaded newer image for ubuntu:14.10 |
24-Dec-2019 12:12:12 | Done |
24-Dec-2019 12:12:12 | Finished task 'Clear env' with result: Success |
24-Dec-2019 12:12:12 | Running post build plugin 'Docker Container Cleanup' |
24-Dec-2019 12:12:12 | Running post build plugin 'NCover Results Collector' |
24-Dec-2019 12:12:12 | Running post build plugin 'Clover Results Collector' |
24-Dec-2019 12:12:12 | Running post build plugin 'npm Cache Cleanup' |
24-Dec-2019 12:12:12 | Running post build plugin 'Artifact Copier' |
24-Dec-2019 12:12:12 | Publishing an artifact: test_logs.tar.gz |
24-Dec-2019 12:12:12 | Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 9.808 ms |
24-Dec-2019 12:12:15 | Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MPSRFSP' |
24-Dec-2019 12:12:15 | Finalising the build... |
24-Dec-2019 12:12:15 | Stopping timer. |
24-Dec-2019 12:12:15 | Build TEST-OCAST-MPSRFSP-17 completed. |
24-Dec-2019 12:12:15 | Running on server: post build plugin 'NCover Results Collector' |
24-Dec-2019 12:12:15 | Running on server: post build plugin 'Build Hanging Detection Configuration' |
24-Dec-2019 12:12:15 | Running on server: post build plugin 'Clover Delta Calculator' |
24-Dec-2019 12:12:15 | Running on server: post build plugin 'Maven Dependencies Postprocessor' |
24-Dec-2019 12:12:15 | All post build plugins have finished |
24-Dec-2019 12:12:15 | Generating build results summary... |
24-Dec-2019 12:12:15 | Saving build results to disk... |
24-Dec-2019 12:12:15 | Logging substituted variables... |
24-Dec-2019 12:12:15 | Indexing build results... |
24-Dec-2019 12:12:15 | Finished building TEST-OCAST-MPSRFSP-17. |