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

Build: #271 failed

Job: Onepanel failed

user supports space with storage sync and enabled options mount in root[RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " user supports space with storage sync and enabled options mount in root[RESt-web GUi-RESt]" in build 271 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user supports space with storage sync and enabled options mount in root[RESt-web GUi-RESt]
Test class
mixed_swaggers.scenarios.test_onepanel_basic
Method
test_user_supports_space_with_storage_sync_and_enabled_options_mount_in_root[REST-web GUI-REST]
Duration
24 secs
Status
Failed (New Failure)

Error Log

CalledProcessError: Command '['docker', 'cp', u'/tmp/pytest-of-bamboo/pytest-0/test_user_supports_space_with_3/user1/dir2', 'None:/volumes/storage']' returned non-zero exit status 1
client1 = 'REST', client2 = 'web GUI', client3 = 'REST'
request = <FixtureRequest for <Function 'test_user_supports_space_with_storage_sync_and_enabled_options_mount_in_root[REST-web GUI-REST]'>>

    from tests.gui.steps.oneprovider.common import *
>   from tests.gui.steps.oneprovider.data_tab import *

tests/mixed_swaggers/scenarios/test_onepanel_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
tests/mixed_swaggers/steps/onepanel_basic.py:404: in cp_files_to_storage_mount_point
    wt_cp_files_to_storage_mount_point(user, src_path, tmpdir, hosts)
tests/gui/steps/common/docker.py:48: in wt_cp_files_to_storage_mount_point
    _docker_cp(tmpdir, browser_id, src_path, hosts)
tests/gui/steps/common/docker.py:35: in _docker_cp
    subprocess.check_call(cmd)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

popenargs = (['docker', 'cp', '/tmp/pytest-of-bamboo/pytest-0/test_user_supports_space_with_3/user1/dir2', 'None:/volumes/storage'],)
kwargs = {}, retcode = 1
cmd = ['docker', 'cp', '/tmp/pytest-of-bamboo/pytest-0/test_user_supports_space_with_3/user1/dir2', 'None:/volumes/storage']

    def check_call(*popenargs, **kwargs):
        """Run command with arguments.  Wait for command to complete.  If
        the exit code was zero then return, otherwise raise
        CalledProcessError.  The CalledProcessError object will have the
        return code in the returncode attribute.
    
        The arguments are the same as for the Popen constructor.  Example:
    
        check_call(["ls", "-l"])
        """
        retcode = call(*popenargs, **kwargs)
        if retcode:
            cmd = kwargs.get("args")
            if cmd is None:
                cmd = popenargs[0]
>           raise CalledProcessError(retcode, cmd)
E           CalledProcessError: Command '['docker', 'cp', u'/tmp/pytest-of-bamboo/pytest-0/test_user_supports_space_with_3/user1/dir2', 'None:/volumes/storage']' returned non-zero exit status 1

/usr/lib/python2.7/subprocess.py:541: CalledProcessError