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

Build: #1884 failed

Job: Directories movement failed

user moves nonempty directory using client2 and using client1 sees that its content has not changed[1oz 1op 1oc-RESt-oneclient1]: Test case result

The below summarizes the result of the test " user moves nonempty directory using client2 and using client1 sees that its content has not changed[1oz 1op 1oc-RESt-oneclient1]" in build 1,884 of Onedata Products - mixed acceptance pkg - Chrome directories movement tests.
Description
user moves nonempty directory using client2 and using client1 sees that its content has not changed[1oz 1op 1oc-RESt-oneclient1]
Test class
mixed.scenarios.test_directories_movement
Method
test_user_moves_nonempty_directory_using_client2_and_using_client1_sees_that_its_content_has_not_changed[1oz_1op_1oc-REST-oneclient1]
Duration
27 secs
Status
Failed (New Failure)

Error Log

TypeError: __init__() got an unexpected keyword argument 'configuration'
request = <FixtureRequest for <Function 'test_user_moves_nonempty_directory_using_client2_and_using_client1_sees_that_its_content_has_not_changed[1oz_1op_1oc-REST-oneclient1]'>>

    @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:415: in create_directory_structure_in_op
    config, space)
tests/mixed/steps/rest/oneprovider/data.py:145: in create_directory_structure_in_op_rest
    hosts)
tests/mixed/utils/data.py:66: in create_content
    hosts)
tests/mixed/steps/rest/oneprovider/data.py:152: in create_item_in_op_rest
    '{}/{}'.format(cwd, name), '')
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 0x7f9be732acc0>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7f9be697b278>, 'user1': <tests.utils.user_utils.User object at 0x7f9be732ba20>}
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