mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
* Collect and aggregate code coverage across all test environments Add Coveralls badge to readme Try CodeCov integration Setup coverage badge for CodeCov Fix CodeCov Badge * Set code coverage regression threshold Attempt to cache bust some boto3 issues on TravisCI * Disable legacy secure strings * Skip boto3 tests on TRAVIS_PULL_REQUEST due to credentials being unavailable Address flake8 issues Debug TRAVIS_PULL_REQUEST ENV Var Trying to get boto3 tests to skip on forked PRs boto3 is not an allowed failure remove TRAVIS ENV debugging * remove pytest skipif that wasn't working * Ignore coverage files
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
language: python
|
|
before_install: openssl version
|
|
env:
|
|
# global:
|
|
# - secure: AifoKzwhjV94cmcQZrdQmqRu/9rkZZvWpwBv1daeAQpLOKFPGsOm3D+x2cSw9+iCfkgDZDfqQVv1kCaFVxTll8v8jTq5SJdqEY0NmGWbj/UkNtShh609oRDsuzLxAEwtVKYjf/h8K2BRea+bl1tGkwZ2vtmYS6dxNlAijjWOfds=
|
|
# - secure: LBSEg/gMj4u4Hrpo3zs6Y/1mTpd2RtcN49mZIFgTdbJ9IhpiNPqcEt647Lz94F9Eses2x2WbNuKqZKZZReY7QLbEzU1m0nN5jlaKrjcG5NR5clNABfFFyhgc0jBikyS4abAG8jc2efeaTrFuQwdoF4sE8YiVrkiVj2X5Xoi6sBk=
|
|
matrix:
|
|
- TOX_SUFFIX="flakes"
|
|
- TOX_SUFFIX="requests"
|
|
- TOX_SUFFIX="httplib2"
|
|
- TOX_SUFFIX="boto3"
|
|
- TOX_SUFFIX="urllib3"
|
|
- TOX_SUFFIX="tornado4"
|
|
- TOX_SUFFIX="aiohttp"
|
|
matrix:
|
|
include:
|
|
- env: TOX_SUFFIX="flakes"
|
|
python: 3.7
|
|
dist: xenial
|
|
- env: TOX_SUFFIX="requests"
|
|
python: 3.7
|
|
dist: xenial
|
|
- env: TOX_SUFFIX="httplib2"
|
|
python: 3.7
|
|
dist: xenial
|
|
- env: TOX_SUFFIX="urllib3"
|
|
python: 3.7
|
|
dist: xenial
|
|
- env: TOX_SUFFIX="tornado4"
|
|
python: 3.7
|
|
dist: xenial
|
|
- env: TOX_SUFFIX="aiohttp"
|
|
python: 3.7
|
|
dist: xenial
|
|
allow_failures:
|
|
- env: TOX_SUFFIX="aiohttp"
|
|
python: "pypy3.5-5.9.0"
|
|
exclude:
|
|
# Only run flakes on a single Python 2.x and a single 3.x
|
|
- env: TOX_SUFFIX="flakes"
|
|
python: 3.5
|
|
- env: TOX_SUFFIX="flakes"
|
|
python: pypy
|
|
- env: TOX_SUFFIX="flakes"
|
|
python: "pypy3.5-5.9.0"
|
|
- env: TOX_SUFFIX="aiohttp"
|
|
python: 2.7
|
|
- env: TOX_SUFFIX="aiohttp"
|
|
python: pypy
|
|
python:
|
|
- 2.7
|
|
- 3.5
|
|
- 3.6
|
|
- pypy
|
|
- "pypy3.5-5.9.0"
|
|
install:
|
|
- pip install tox-travis codecov
|
|
- if [[ $TOX_SUFFIX != 'flakes' ]]; then python setup.py install ; fi
|
|
script:
|
|
- tox -e "${TOX_SUFFIX}"
|
|
after_success:
|
|
- codecov
|