GUI acceptance tests using environment deployed from packages.

Build: #1637 failed

Job: Oneprovider ACL basic failed

user sets excluding acl records for group and parent group in specified order[1oz 1op deployed-[general:delete]-[deny, general:delete]-succeeds]: Test case result

The below summarizes the result of the test " user sets excluding acl records for group and parent group in specified order[1oz 1op deployed-[general:delete]-[deny, general:delete]-succeeds]" in build 1,637 of Onedata Products - gui acceptance pkg - Chrome oneprovider ACL basic.
Description
user sets excluding acl records for group and parent group in specified order[1oz 1op deployed-[general:delete]-[deny, general:delete]-succeeds]
Test class
gui.scenarios.test_oneprovider_acl_basic
Method
test_user_sets_excluding_acl_records_for_group_and_parent_group_in_specified_order[1oz_1op_deployed-[general:delete]-[deny, general:delete]-succeeds]
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-GAPT-COAB/onedata/tests/gui/environments/1oz_1op_deployed.yaml'
hosts = {}
request = <SubRequest 'maybe_start_env' for <Function 'test_user_sets_one_acl_record_for_directory_in_edit_permissions_modal[1oz_1op_deployed-[allow, acl:read acl]-group-group1]'>>
env_desc = {'elasticSearch': True, 'forceImagePull': True, 'oneprovider-1': {'batchConfig': {'createUsers': False}}, 'oneproviderImage': 'docker.onedata.org/oneprovider-dev:develop', ...}
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7ff4f9dbac50>}
previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT-COAB/onedata/tests/gui/environments/1oz_1op_deployed.yaml'}
test_config = {}

    @pytest.fixture(scope='session', autouse=True)
    def maybe_start_env(env_description_abs_path, hosts, request, env_desc, users, previous_env,
                        test_config):
        test_type = get_test_type(request)
    
        if _should_start_new_env(env_description_abs_path, previous_env):
            start_test_env(request, test_type, env_desc, hosts, users, env_description_abs_path,
>                          test_config, previous_env)

tests/conftest.py:194: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:241: in start_test_env
    scenario_path, request, hosts, patch_path, users, test_config
tests/utils/environment_utils.py:71: in start_environment
    dep_status = get_deployment_status()
tests/utils/environment_utils.py:210: in get_deployment_status
    return yaml.load(run_onenv_command('status'))
/usr/local/lib/python3.6/dist-packages/yaml/__init__.py:70: in load
    loader = Loader(stream)
/usr/local/lib/python3.6/dist-packages/yaml/loader.py:34: in __init__
    Reader.__init__(self, stream)
/usr/local/lib/python3.6/dist-packages/yaml/reader.py:79: in __init__
    self.determine_encoding()
/usr/local/lib/python3.6/dist-packages/yaml/reader.py:135: in determine_encoding
    self.update(1)
/usr/local/lib/python3.6/dist-packages/yaml/reader.py:169: in update
    self.check_printable(data)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <yaml.loader.Loader object at 0x7ff4f9dbaf98>
data = '\x1b[37m[INFO] There is no active deployment\x1b[0m\n'

    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           yaml.reader.ReaderError: unacceptable character #x001b: special characters are not allowed
E             in "<byte string>", position 0

/usr/local/lib/python3.6/dist-packages/yaml/reader.py:144: ReaderError