Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #1884 failed

Job: Directories times failed

user renames directory using client2 and check statuschange time using client1[1oz 1op 1oc-RESt-web GUi-greater than]: Test case result

The below summarizes the result of the test " user renames directory using client2 and check statuschange time using client1[1oz 1op 1oc-RESt-web GUi-greater than]" in build 1,884 of Onedata Products - mixed acceptance pkg - Chrome directories times tests.
Description
user renames directory using client2 and check statuschange time using client1[1oz 1op 1oc-RESt-web GUi-greater than]
Test class
mixed.scenarios.test_directories_times
Method
test_user_renames_directory_using_client2_and_check_statuschange_time_using_client1[1oz_1op_1oc-REST-web GUI-greater than]
Duration
39 secs
Status
Failed (New Failure)

Error Log

TypeError: __init__() got an unexpected keyword argument 'configuration'
request = <FixtureRequest for <Function 'test_user_renames_directory_using_client2_and_check_statuschange_time_using_client1[1oz_1op_1oc-REST-web GUI-greater than]'>>

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

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/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/mixed/steps/data_basic.py:124: in create_dir_in_op
    create_dir_in_op_rest(user, users, host, hosts, full_path, result)
tests/mixed/steps/rest/oneprovider/data.py:81: in create_dir_in_op_rest
    client = login_to_cdmi(user, users, hosts[host]['hostname'])
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

username = 'user1'
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7f1c1fc69f28>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7f1c207f0550>, 'user1': <tests.utils.user_utils.User object at 0x7f1c2079e0f0>}
host = 'dev-oneprovider-krakow.default.svc.cluster.local', access_token = None
identity_token = None

    def login_to_cdmi(username, users, host, access_token=None,
                      identity_token=None):
        from tests.mixed.cdmi_client.configuration import (Configuration
                                                                    as Conf_CDMI)
        from tests.mixed.cdmi_client import (ApiClient as ApiClient_CDMI)
    
        configuration = Conf_CDMI()
        setup_basic_configuration(configuration, host, OZ_REST_PORT,
                                  CDMI_REST_PATH_PREFIX)
    
        header_value = access_token if access_token else users[username].token
    
        client = ApiClient_CDMI(configuration=configuration,
                                header_name='X-Auth-Token',
>                               header_value=header_value)
E       TypeError: __init__() got an unexpected keyword argument 'configuration'

tests/mixed/utils/common.py:72: TypeError