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

Build: #3200 failed

Job: Spaces basic was successful

user fails to move user root directory[1oz 1op 1oc-RESt]: Test case result

The below summarizes the result of the test " user fails to move user root directory[1oz 1op 1oc-RESt]" in build 3,200 of Onedata Products - mixed acceptance pkg - Spaces basic.
Description
user fails to move user root directory[1oz 1op 1oc-RESt]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_fails_to_move_user_root_directory[1oz_1op_1oc-REST]
Duration
31 secs
Status
Failed (Existing Failure)

Error Log

tests.utils.http_exceptions.HTTPBadRequest: [400] Bad Request: {"error":{"id":"posix","details":{"errno":"enoent"},"description":"Operation failed with POSIX error: enoent."}}
request = <FixtureRequest for <Function 'test_user_fails_to_move_user_root_directory[1oz_1op_1oc-REST]'>>

    @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/mixed/steps/rest/onezone/user_root_dir.py:128: in try_to_move_user_root_dir
    client.move_item_by_id(tmp_memory['user_root_dir'][user], '/new_name')
tests/gui/utils/oneservices/cdmi.py:125: in move_item_by_id
    return http_put(self.ip, self.port, parsed_dst_path, headers=headers,
tests/utils/rest_utils.py:53: in http_put
    return http_request(requests.put, ip, port, path, use_ssl, headers,
tests/utils/rest_utils.py:89: in http_request
    raise_http_exception(response)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

response = <Response [400]>

    def raise_http_exception(response):
        ex_cls = _exceptions.get(response.status_code, HTTPError)
>       raise ex_cls(response)
E       tests.utils.http_exceptions.HTTPBadRequest: [400] Bad Request: {"error":{"id":"posix","details":{"errno":"enoent"},"description":"Operation failed with POSIX error: enoent."}}

tests/utils/http_exceptions.py:15: HTTPBadRequest