mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-22 12:48:25 +00:00
Currently, we don't have a test for Sentry. Unsure how to do this. Also added a script, service and test workflow to help. (Also to learn about adding a script and service.)
12 lines
242 B
Python
12 lines
242 B
Python
from crc.api.common import ApiError
|
|
|
|
|
|
class FailingService(object):
|
|
|
|
@staticmethod
|
|
def fail_as_service():
|
|
"""It fails"""
|
|
|
|
raise ApiError(code='bad_service',
|
|
message='This is my failing service')
|