mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
5d7c6ad541
Required fixes: - CallbackQuery is now comparable. - Message.effective_attachment, Message.photo, Message.new_chat_members, Message.new_chat_photo & Game.text_entitties semantic fixes - when they are not defined, return an empty list. - Docstring fix to Update class.
27 lines
799 B
YAML
27 lines
799 B
YAML
environment:
|
|
|
|
matrix:
|
|
# For Python versions available on Appveyor, see
|
|
# http://www.appveyor.com/docs/installed-software#python
|
|
# The list here is complete (excluding Python 2.6, which
|
|
# isn't covered by this document) at the time of writing.
|
|
|
|
- PYTHON: "C:\\Python27"
|
|
- PYTHON: "C:\\Python33"
|
|
- PYTHON: "C:\\Python34"
|
|
- PYTHON: "C:\\Python35"
|
|
- PYTHON: "C:\\Python36"
|
|
|
|
install:
|
|
# We need wheel installed to build wheels
|
|
- "git submodule update --init --recursive"
|
|
- "%PYTHON%\\python.exe -m pip install -U wheel"
|
|
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
|
|
- "%PYTHON%\\python.exe -m pip install -r requirements-dev.txt"
|
|
|
|
build: off
|
|
|
|
cache: C:\Users\appveyor\pip\wheels
|
|
|
|
test_script:
|
|
- "%python%\\Scripts\\pytest -v --cov=telegram"
|