Build: #44 failed

Job: LUMA multiprovider tests failed

ownership of new file created on provider without luma is correctly mapped on storage with import: Test case result

The below summarizes the result of the test " ownership of new file created on provider without luma is correctly mapped on storage with import" in build 44 of Onedata Products - mixed acceptance pkg - feature-VFS-4500-luma-acceptance-one-env-tests-develop - LUMA multiprovider tests.
Description
ownership of new file created on provider without luma is correctly mapped on storage with import
Test class
mixed_oneclient.scenarios.test_luma_multiprovider
Method
test_ownership_of_new_file_created_on_provider_without_luma_is_correctly_mapped_on_storage_with_import
Duration
3 secs
Status
Failed (New Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: When "using client2 joe creates file "Landsat-5/file1" in space "krk-plirw-par-c"". Line 51 in scenario "Ownership of new file created on provider without LUMA is correctly mapped on storage with import" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT1-CLMT/onedata/tests/mixed_oneclient/features/luma/luma_multiprovider.feature
request = <FixtureRequest for <Function 'test_ownership_of_new_file_created_on_provider_without_luma_is_correctly_mapped_on_storage_with_import'>>

>   ???

tests/mixed_oneclient/scenarios/test_luma_multiprovider.py:53: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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_ownership_of_new_file_created_on_provider_without_luma_is_correctly_mapped_on_storage_with_import'>>
step = <pytest_bdd.feature.Step object at 0x7f355e39b450>
scenario = <pytest_bdd.feature.Scenario object at 0x7f355e39b3d0>
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: When "using client2 joe creates file "Landsat-5/file1" in space "krk-plirw-par-c"". Line 51 in scenario "Ownership of new file created on provider without LUMA is correctly mapped on storage with import" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT1-CLMT/onedata/tests/mixed_oneclient/features/luma/luma_multiprovider.feature

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