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

Build: #271 failed

Job: Onepanel failed

user disables files update[web GUi-RESt-RESt]: Test case result

The below summarizes the result of the test " user disables files update[web GUi-RESt-RESt]" in build 271 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user disables files update[web GUi-RESt-RESt]
Test class
mixed_swaggers.scenarios.test_onepanel_basic
Method
test_user_disables_files_update[web GUI-REST-REST]
Duration
38 secs
Status
Failed (New Failure)

Error Log

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

>   ???

tests/mixed_swaggers/scenarios/test_onepanel_basic.py:61: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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:413: in cp_files_to_space_root_dir
    tmp_memory, hosts)
tests/gui/steps/common/docker.py:58: in wt_cp_files_to_space_root_dir
    os.path.join(MOUNT_POINT, tmp_memory['spaces'][space]))
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_disables_files_updat1/user1/dir2', 'None:/volumes/storage/bac9c6a5caa0bb3df9c9c6f2bea61521'],)
kwargs = {}, retcode = 1
cmd = ['docker', 'cp', '/tmp/pytest-of-bamboo/pytest-0/test_user_disables_files_updat1/user1/dir2', 'None:/volumes/storage/bac9c6a5caa0bb3df9c9c6f2bea61521']

    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_disables_files_updat1/user1/dir2', 'None:/volumes/storage/bac9c6a5caa0bb3df9c9c6f2bea61521']' returned non-zero exit status 1

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