Build: #1 failed

Job: Storage sync failed

user supports space with storage sync and no enabled options: Test case result

The below summarizes the result of the test " user supports space with storage sync and no enabled options" in build 1 of Onedata Products - gui acceptance pkg - feature-VFS-4715-onezone-groups-gui-acceptance-tests - Chrome storage sync tests.
Description
user supports space with storage sync and no enabled options
Test class
gui.scenarios.test_storage_sync
Method
test_user_supports_space_with_storage_sync_and_no_enabled_options
Duration
23 secs
Status
Failed (New Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: Given "user of browser2 seen "onezone" zone name in oz login page". Line 10 in scenario "User supports space with storage sync and no enabled options" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT14-CSST/onedata/tests/gui/features/onepanel/storage_sync.feature
request = <FixtureRequest for <Function 'test_user_supports_space_with_storage_sync_and_no_enabled_options'>>

    from tests.gui.steps.oneprovider.file_browser import *
>   from tests.gui.steps.oneprovider.metadata import *

tests/gui/scenarios/test_storage_sync.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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_user_supports_space_with_storage_sync_and_no_enabled_options'>>
step = <pytest_bdd.feature.Step object at 0x7f3ed13e4350>
scenario = <pytest_bdd.feature.Scenario object at 0x7f3ed136e950>
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 "user of browser2 seen "onezone" zone name in oz login page". Line 10 in scenario "User supports space with storage sync and no enabled options" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT14-CSST/onedata/tests/gui/features/onepanel/storage_sync.feature

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