Build: #45 failed

Job: Access tokens failed

users create files using web gui an clients and they see that ownership is correctly mapped: Test case result

The below summarizes the result of the test " users create files using web gui an clients and they see that ownership is correctly mapped" in build 45 of Onedata Products - mixed acceptance pkg - feature-VFS-4500-luma-acceptance-one-env-tests-develop - Chrome LUMA tests.
Description
users create files using web gui an clients and they see that ownership is correctly mapped
Test class
mixed_oneclient.scenarios.test_luma
Method
test_users_create_files_using_web_gui_an_clients_and_they_see_that_ownership_is_correctly_mapped
Duration
1 min
Status
Failed (New Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: Given "[user1, user2] mounted clients to oneprovider-1 on client_host". Line 36 in scenario "Users create files using web gui an clients and they see that ownership is correctly mapped" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT1-CLT/onedata/tests/mixed_oneclient/features/luma/luma.feature
request = <FixtureRequest for <Function 'test_users_create_files_using_web_gui_an_clients_and_they_see_that_ownership_is_correctly_mapped'>>

    from tests.gui.steps.modal import *
>   from tests.gui.steps.oneprovider_common import *

tests/mixed_oneclient/scenarios/test_luma.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:163: in _execute_scenario
    step_func = _find_step_function(request, step, scenario, encoding=encoding)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

request = <FixtureRequest for <Function 'test_users_create_files_using_web_gui_an_clients_and_they_see_that_ownership_is_correctly_mapped'>>
step = <pytest_bdd.feature.Step object at 0x7f1f9ced6fd0>
scenario = <pytest_bdd.feature.Scenario object at 0x7f1f9ce67050>
encoding = 'utf-8'

    def _find_step_function(request, step, scenario, encoding):
        """Match the step defined by the regular expression pattern.
    
        :param request: PyTest request object.
        :param step: Step.
        :param scenario: Scenario.
    
        :return: Function of the step.
        :rtype: function
        """
        name = step.name
        try:
            return get_fixture_value(request, get_step_fixture_name(name, step.type, encoding))
        except pytest_fixtures.FixtureLookupError:
            try:
                name = find_argumented_step_fixture_name(name, step.type, request._fixturemanager, request)
                if name:
                    return get_fixture_value(request, name)
                raise
            except pytest_fixtures.FixtureLookupError:
                raise exceptions.StepDefinitionNotFoundError(
                    u"""Step definition is not found: {step}."""
                    """ Line {step.line_number} in scenario "{scenario.name}" in the feature "{feature.filename}""".format(
                        step=step,
                        scenario=scenario,
>                       feature=scenario.feature,
                    )
                )
E               StepDefinitionNotFoundError: Step definition is not found: Given "[user1, user2] mounted clients to oneprovider-1 on client_host". Line 36 in scenario "Users create files using web gui an clients and they see that ownership is correctly mapped" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT1-CLT/onedata/tests/mixed_oneclient/features/luma/luma.feature

/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:105: StepDefinitionNotFoundError