mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-25 08:37:07 +01:00
Adding coveralls support, adding base_url to pickle rebuild
This commit is contained in:
parent
5bfbaff318
commit
4d59e8a663
2 changed files with 3 additions and 1 deletions
|
@ -6,3 +6,5 @@ python:
|
|||
- "3.4"
|
||||
- "nightly"
|
||||
script: make test
|
||||
after_success:
|
||||
- coveralls
|
||||
|
|
|
@ -665,4 +665,4 @@ class Bot(TelegramObject):
|
|||
return data
|
||||
|
||||
def __reduce__(self):
|
||||
return (self.__class__, (self.token,))
|
||||
return (self.__class__, (self.token, self.base_url))
|
||||
|
|
Loading…
Reference in a new issue