GUI acceptance tests using environment deployed from packages.

Build: #379 failed

Job: Oneprovider data tab failed

user sees that with one file selected only create directory create file edit metadata upload file rename element change element permissions remove element show data distribution buttons from toolbar are enabled[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees that with one file selected only create directory create file edit metadata upload file rename element change element permissions remove element show data distribution buttons from toolbar are enabled[1oz 1op deployed]" in build 379 of Onedata Products - gui acceptance pkg - Chrome oneprovider data tab tests.
Description
user sees that with one file selected only create directory create file edit metadata upload file rename element change element permissions remove element show data distribution buttons from toolbar are enabled[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_data_tab
Method
test_user_sees_that_with_one_file_selected_only_create_directory_create_file_edit_metadata_upload_file_rename_element_change_element_permissions_remove_element_show_data_distribution_buttons_from_toolbar_are_enabled[1oz_1op_deployed]
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

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

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

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

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

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

tests/conftest.py:343: AttributeError