Add TOKEN and CHAT_ID for testing in favor of #221

This commit is contained in:
leandrotoledo 2016-03-31 15:36:18 -03:00
parent a0788788da
commit ba0ea4f268

View file

@ -38,8 +38,8 @@ class BaseTest(object):
def __init__(self, *args, **kwargs):
super(BaseTest, self).__init__(*args, **kwargs)
bot = telegram.Bot(os.environ.get('TOKEN'))
chat_id = os.environ.get('CHAT_ID')
bot = telegram.Bot(os.environ.get('TOKEN', '133505823:AAHZFMHno3mzVLErU5b5jJvaeG--qUyLyG0'))
chat_id = os.environ.get('CHAT_ID', '12173560')
self._bot = bot
self._chat_id = chat_id