GUI acceptance tests using environment deployed from packages.

Build: #2472 failed

Job: Multiprovider QoS failed

Stages & jobs

  1. Acceptance Test

user can select one of supporting providers in qos graphical editor and it causes to match its storage[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user can select one of supporting providers in qos graphical editor and it causes to match its storage[1oz 2op deployed]" in build 2,472 of Onedata Products - gui acceptance pkg - Chrome multiprovider QoS tests.
Description
user can select one of supporting providers in qos graphical editor and it causes to match its storage[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_qos
Method
test_user_can_select_one_of_supporting_providers_in_qos_graphical_editor_and_it_causes_to_match_its_storage[1oz_2op_deployed]
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: Expected dev-oneprovider-krakow provider not in actual
request = <FixtureRequest for <Function 'test_user_can_select_one_of_supporting_providers_in_qos_graphical_editor_and_it_causes_to_match_its_storage[1oz_2op_deployed]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/steps/oneprovider/qos.py:233: in assert_list_of_providers_in_add_cond_popup
    compare_lists(expected, actual)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

expected = ['dev-oneprovider-krakow']
actual = ['dev-oneprovider-krakow #0ad880']

    def compare_lists(expected, actual):
        assert len(actual) == len(expected), ('Expected number of providers does '
                                              'not match actual')
        for val in expected:
>           assert val in actual, f'Expected {val} provider not in actual'
E           AssertionError: Expected dev-oneprovider-krakow provider not in actual

tests/gui/steps/oneprovider/qos.py:314: AssertionError