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

Build: #3268 was successful

Job: Workflows with input files was successful

user sees successful execution of all workflows from automationexamples with their example input files[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees successful execution of all workflows from automationexamples with their example input files[1oz 1op openfaas]" in build 3,268 of Onedata Products - mixed acceptance pkg - Workflows with input files.
Description
user sees successful execution of all workflows from automationexamples with their example input files[1oz 1op openfaas]
Test class
mixed.scenarios.test_workflows_with_input_files
Method
test_user_sees_successful_execution_of_all_workflows_from_automationexamples_with_their_example_input_files[1oz_1op_openfaas]
Jira Issue
Duration
27 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: workflows [{'bagit-uploader': 'bagit_archive_unpack.tar'}, {'bagit-uploader': 'bagit_archive_fetch_xrootd.zip'}, {'bagit-uploader': 'bagit_archive_fetch.tar.gz'}, {'bagit-uploader': 'bagit_archive_unpack_and_fetch.zip'}, {'bagit-uploader': 'bagit_archive_5GBfile.zip'}] are in ongoing state
fixturefunc = <function wait_for_workflow_executions at 0x7fb82f6f4ae0>
request = <FixtureRequest for <Function test_user_sees_successful_execution_of_all_workflows_from_automationexamples_with_their_example_input_files[1oz_1op_openfaas]>>
kwargs = {'host': 'oneprovider-1', 'hosts': {'oneprovider-1': {'container-id': '78f48333676a7abf4e5a48d802dc8b431c1e8dabf7eab59..., 'name': 'dev-onezone', ...}}, 'space': 'space1', 'spaces': {'space1': '158702c9a05797d00c4b3e54dd71eb5bch01fa'}, ...}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/mixed/steps/rest/onezone/automation.py:493: in wait_for_workflow_executions
    assert_all_workflow_execution_finished(
tests/mixed/steps/rest/onezone/automation.py:504: in assert_all_workflow_execution_finished
    assert_empty_workflow_phase(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user = 'user1'
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7fb82f761b20>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7fb82f3c5f10>, 'user1': <tests.utils.user_utils.User object at 0x7fb82f3c5610>}
host = 'oneprovider-1'
hosts = {'oneprovider-1': {'container-id': '78f48333676a7abf4e5a48d802dc8b431c1e8dabf7eab590d59d1992e0282221', 'hostname': 'de...47f2339b1e5', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.179.175', 'name': 'dev-onezone', ...}}
space = 'space1', spaces = {'space1': '158702c9a05797d00c4b3e54dd71eb5bch01fa'}
workflow_executions = {'1a2df58ddc8cecf576d504ef9799210fchea74': {'bagit-uploader': 'bagit_archive_fetch_xrootd.zip'}, '31774e905f01645c8294...thon_script'}, '43262e9337a46a516fa7a108ca970501ch2b95': {'detect-file-mime-formats': 'example_python_script.py'}, ...}
phase = 'ongoing'

    def assert_empty_workflow_phase(
        user, users, host, hosts, space, spaces, workflow_executions, phase
    ):
        executions = list_workflow_executions(
            user, users, host, hosts, space, spaces, phase=phase
        )
        if any(executions):
>           raise RuntimeError(
                f"workflows {[workflow_executions[wid] for wid in executions]} "
                f"are in {phase} state"
            )
E           RuntimeError: workflows [{'bagit-uploader': 'bagit_archive_unpack.tar'}, {'bagit-uploader': 'bagit_archive_fetch_xrootd.zip'}, {'bagit-uploader': 'bagit_archive_fetch.tar.gz'}, {'bagit-uploader': 'bagit_archive_unpack_and_fetch.zip'}, {'bagit-uploader': 'bagit_archive_5GBfile.zip'}] are in ongoing state

tests/mixed/steps/rest/onezone/automation.py:516: RuntimeError