We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 391fb03 commit d3cb62aCopy full SHA for d3cb62a
tests/test_bot.py
@@ -17,6 +17,7 @@
17
# You should have received a copy of the GNU Lesser Public License
18
# along with this program. If not, see [http://www.gnu.org/licenses/].
19
import os
20
+import sys
21
import time
22
from datetime import datetime
23
from platform import python_implementation
@@ -310,6 +311,8 @@ def test_get_updates(self, bot):
310
311
@flaky(3, 1)
312
@pytest.mark.timeout(15)
313
@pytest.mark.xfail
314
+ @pytest.mark.skipif(os.getenv('APPVEYOR') and (sys.version_info < (3, 6)),
315
+ reason='only run on 3.6 on appveyor')
316
def test_set_webhook_get_webhook_info_and_delete_webhook(self, bot):
317
url = 'https://python-telegram-bot.org/test/webhook'
318
max_connections = 7
0 commit comments