python-telegram-bot/appveyor.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

2017-06-20 21:45:49 +02:00
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:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
2017-06-20 21:45:49 +02:00
branches:
only:
- master
2018-10-01 11:46:48 +02:00
- /^[vV]\d+$/
skip_branch_with_pr: true
max_jobs: 1
2017-06-20 21:45:49 +02:00
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
2017-06-20 21:45:49 +02:00
- "git submodule update --init --recursive"
# Check that we have the expected version and architecture for Python
- "python --version"
# We need wheel installed to build wheels
# fix TypeError from an old version of this
- "pip install attrs==17.4.0"
- "pip install -U codecov pytest-cov"
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
2017-06-20 21:45:49 +02:00
build: off
test_script:
- "pytest --version"
- "pytest -m \"not nocoverage\" --cov --cov-report xml:coverage.xml"
after_test:
- "codecov -f coverage.xml -F Appveyor"