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

Build: #648 failed

Job: Spaces basic failed

user renames space using client1 and using client2 he sees that it has been renamed[1oz 1op 1oc-web GUi-RESt]: Test case result

The below summarizes the result of the test " user renames space using client1 and using client2 he sees that it has been renamed[1oz 1op 1oc-web GUi-RESt]" in build 648 of Onedata Products - mixed acceptance pkg - Chrome spaces basic tests.
Description
user renames space using client1 and using client2 he sees that it has been renamed[1oz 1op 1oc-web GUi-RESt]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_renames_space_using_client1_and_using_client2_he_sees_that_it_has_been_renamed[1oz_1op_1oc-web GUI-REST]
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

test setup failure
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CSBT/onedata/tests/mixed/environments/1oz_1op_1oc.yaml'
hosts = {}
request = <SubRequest 'env_desc' for <Function 'test_admin_user_adds_other_user_to_space_using_client1_and_that_user_using_client2_sees_that_he_has_been_added[1oz_1op_1oc]'>>
users = {}
previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CSBT/onedata/tests/mixed/environments/1oz_1op_1oc.yaml'}

    @fixture(scope='session')
    def env_desc(env_description_abs_path, hosts, request, users, previous_env):
        from tests.conftest import env_desc
        return env_desc(env_description_abs_path, hosts, request, users,
>                       previous_env)

tests/gui/conftest.py:398: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:332: in env_desc
    env_description_abs_path
tests/conftest.py:446: in start_environment
    pods_cfg = check_deployment()
tests/conftest.py:475: in check_deployment
    status_output = yaml.load(status_output.decode('utf-8'))
/usr/local/lib/python2.7/dist-packages/yaml/__init__.py:69: in load
    loader = Loader(stream)
/usr/local/lib/python2.7/dist-packages/yaml/loader.py:34: in __init__
    Reader.__init__(self, stream)
/usr/local/lib/python2.7/dist-packages/yaml/reader.py:74: in __init__
    self.check_printable(stream)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <yaml.loader.Loader object at 0x7fac5b9abcd0>
data = '#x1B[37m[INFO] There is no active deployment#x1B[0m
'

    def check_printable(self, data):
        match = self.NON_PRINTABLE.search(data)
        if match:
            character = match.group()
            position = self.index+(len(self.buffer)-self.pointer)+match.start()
            raise ReaderError(self.name, position, ord(character),
>                   'unicode', "special characters are not allowed")
E           ReaderError: unacceptable character #x001b: special characters are not allowed
E             in "<unicode string>", position 0

/usr/local/lib/python2.7/dist-packages/yaml/reader.py:144: ReaderError