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

Build: #3200 failed

Job: Directories times failed

user changes directory using client2 and using client1 sees that modification time has changed[1oz 1op 1oc-oneclient1-web GUi]: Test case result

The below summarizes the result of the test " user changes directory using client2 and using client1 sees that modification time has changed[1oz 1op 1oc-oneclient1-web GUi]" in build 3,200 of Onedata Products - mixed acceptance pkg - Directories times.
Description
user changes directory using client2 and using client1 sees that modification time has changed[1oz 1op 1oc-oneclient1-web GUi]
Test class
mixed.scenarios.test_directories_times
Method
test_user_changes_directory_using_client2_and_using_client1_sees_that_modification_time_has_changed[1oz_1op_1oc-oneclient1-web GUI]
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: Time comparison failed.  Time1: modification = 1722377336.0  Time2: modification = 1722377336.0  Comparator: greater
request = <FixtureRequest for <Function 'test_user_changes_directory_using_client2_and_using_client1_sees_that_modification_time_has_changed[1oz_1op_1oc-oneclient1-web GUI]'>>

    @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/data_basic.py:540: in compare_file_time_with_copied_time
    compare_file_time_with_copied_time_in_op_oneclient(
<decorator-gen-895>:2: in compare_file_time_with_copied_time_in_op_oneclient
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7fc69a433550>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7fc69cde9af0>, 'user1': <tests.utils.user_utils.User object at 0x7fc69cde9400>}
user = 'user1', client_node = 'client1', time_name1 = 'modification'
file = 'space1/dir1', time2 = 1722377336.0, time_name2 = 'modification'
comparator = 'greater'

    @repeat_failed(timeout=WAIT_FRONTEND)
    def compare_file_time_with_copied_time_in_op_oneclient(
            users, user, client_node, time_name1, file, time2, time_name2,
            comparator):
        time1 = get_time_for_file_in_op_oneclient(users, user, client_node,
                                                  time_name1, file)
        err_msg = (f'Time comparison failed. \nTime1: {time_name1} = {time1} \n'
                   f'Time2: {time_name2} = {time2} \nComparator: {comparator}')
>       assert compare(time1, time2, comparator), err_msg
E       AssertionError: Time comparison failed. 
E       Time1: modification = 1722377336.0 
E       Time2: modification = 1722377336.0 
E       Comparator: greater

tests/mixed/steps/oneclient/data_basic.py:158: AssertionError