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

Build: #3250 failed

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,250 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
24 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: workflows [{'bagit-uploader': 'bagit_archive_5GBfile.zip'}] are in ongoing state
fixturefunc = <function wait_for_workflow_executions at 0x7f7b2aa347c0>
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': 'f4e59b67772b1377fdb24cf4b496aaf32e234bdb38bde47..., 'name': 'dev-onezone', ...}}, 'space': 'space1', 'spaces': {'space1': '5e6e29d1be33c5356a23a8517d4a4325ch9401'}, ...}

    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:313: in wait_for_workflow_executions
    assert_all_workflow_execution_finished(user, users, host, hosts, space,
tests/mixed/steps/rest/onezone/automation.py:321: in assert_all_workflow_execution_finished
    assert_empty_workflow_phase(user, users, host, hosts, space, spaces,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user = 'user1'
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7f7b2a922e10>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7f7b2a7e74a0>, 'user1': <tests.utils.user_utils.User object at 0x7f7b2a45e960>}
host = 'oneprovider-1'
hosts = {'oneprovider-1': {'container-id': 'f4e59b67772b1377fdb24cf4b496aaf32e234bdb38bde47959ba5cc810afae29', 'hostname': 'de...50c228c3acbd1', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.8.139', 'name': 'dev-onezone', ...}}
space = 'space1', spaces = {'space1': '5e6e29d1be33c5356a23a8517d4a4325ch9401'}
workflow_executions = {'19298cc66fc30be7a1fbd40a1672186bchf8a0': {'detect-file-formats': 'example_cpp_script'}, '1a23cd3739d1b6785678887e263...le_python_script.py'}, '22b840c53dc01d770f607601e1facea9ch1f79': {'detect-file-formats': 'example_python_script'}, ...}
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_5GBfile.zip'}] are in ongoing state

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