diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 356e087..a4e459b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: push jobs: - build: + test: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 diff --git a/moira_client/models/contact.py b/moira_client/models/contact.py index 6f38407..570e3b0 100644 --- a/moira_client/models/contact.py +++ b/moira_client/models/contact.py @@ -2,13 +2,6 @@ from ..client import ResponseStructureError from .base import Base -CONTACT_EMAIL = 'mail' -CONTACT_PUSHOVER = 'pushover' -CONTACT_SLACK = 'slack' -CONTACT_TELEGRAM = 'telegram' -CONTACT_TWILIO_SMS = 'twilio sms' -CONTACT_TWILIO_VOICE = 'twilio voice' - class Contact(Base): def __init__(self, value='', type='', **kwargs):