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

Build: #1068 failed

Job: Spaces basic failed

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

The below summarizes the result of the test " admin unsupport space using client1 and using client2 he sees that it has been unsupported[1oz 1op 1oc-RESt-web GUi]" in build 1,068 of Onedata Products - mixed acceptance pkg - Chrome spaces basic tests.
Description
admin unsupport space using client1 and using client2 he sees that it has been unsupported[1oz 1op 1oc-RESt-web GUi]
Test class
mixed.scenarios.test_spaces_basic
Method
test_admin_unsupport_space_using_client1_and_using_client2_he_sees_that_it_has_been_unsupported[1oz_1op_1oc-REST-web GUI]
Duration
30 secs
Status
Failed (New Failure)

Error Log

ValueError: Invalid value for `cluster_id`, must not be `None`
request = <FixtureRequest for <Function 'test_admin_unsupport_space_using_client1_and_using_client2_he_sees_that_it_has_been_unsupported[1oz_1op_1oc-REST-web GUI]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/mixed/steps/space_basic.py:160: in remove_provider_support_for_space_in_oz
    admin_credentials)
tests/mixed/steps/rest/onezone/space_management.py:88: in remove_provider_support_for_space_in_oz_using_rest
    provider = get_provider_with_name(admin_client, provider_name)
tests/mixed/steps/rest/onezone/common.py:20: in get_provider_with_name
    provider = provider_api.get_provider_details(pid)
tests/mixed/onezone_client/apis/provider_api.py:805: in get_provider_details
    (data) = self.get_provider_details_with_http_info(id, **kwargs)
tests/mixed/onezone_client/apis/provider_api.py:878: in get_provider_details_with_http_info
    collection_formats=collection_formats)
tests/mixed/onezone_client/api_client.py:317: in call_api
    _return_http_data_only, collection_formats, _preload_content, _request_timeout)
tests/mixed/onezone_client/api_client.py:159: in __call_api
    return_data = self.deserialize(response_data, response_type)
tests/mixed/onezone_client/api_client.py:232: in deserialize
    return self.__deserialize(data, response_type)
tests/mixed/onezone_client/api_client.py:272: in __deserialize
    return self.__deserialize_model(data, klass)
tests/mixed/onezone_client/api_client.py:616: in __deserialize_model
    instance = klass(**kwargs)
tests/mixed/onezone_client/models/provider_details.py:75: in __init__
    self.cluster_id = cluster_id
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = {'cluster_id': None,
 'creation_time': None,
 'domain': 'dev-oneprovider-krakow.default.svc.cluster.local',
 'latitude...: 19.945,
 'name': 'dev-oneprovider-krakow',
 'online': None,
 'provider_id': 'c667b27d1a889dd032e888e5f0b6bde6ch7294'}
cluster_id = None

    @cluster_id.setter
    def cluster_id(self, cluster_id):
        """
            Sets the cluster_id of this ProviderDetails.
            The Id of the corresponding Oneprovider cluster.
    
            :param cluster_id: The cluster_id of this ProviderDetails.
            :type: str
            """
        if cluster_id is None:
>           raise ValueError("Invalid value for `cluster_id`, must not be `None`")
E           ValueError: Invalid value for `cluster_id`, must not be `None`

tests/mixed/onezone_client/models/provider_details.py:225: ValueError