def check_for_skip_tag()

in source/ecs/workspaces_helper.py [0:0]


    def check_for_skip_tag(self, tags):
        """
        Return a boolean value to indicate if the workspace needs to be skipped from the solution workflow
        :param tags:
        :return: True or False to indicate if the workspace can be skipped
        """
        # Added for case insensitive matching.  Works with standard alphanumeric tags
        if tags is None:
            return True
        else:
            for tag_pair in tags:
                if tag_pair['Key'].lower() == 'Skip_Convert'.lower():
                    return True

        return False