You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
680 B
28 lines
680 B
language: python
|
|
matrix:
|
|
include:
|
|
- python: "2.7"
|
|
env: TOX_ENV=lint
|
|
- python: "2.7"
|
|
env: TOX_ENV=py27-oauth2client1
|
|
- python: "2.7"
|
|
env: TOX_ENV=py27-oauth2client2
|
|
- python: "2.7"
|
|
env: TOX_ENV=py27-oauth2client3
|
|
- python: "2.7"
|
|
env: TOX_ENV=py27-oauth2client4
|
|
- python: "3.5"
|
|
env: TOX_ENV=py35-oauth2client1
|
|
- python: "3.5"
|
|
env: TOX_ENV=py35-oauth2client2
|
|
- python: "3.5"
|
|
env: TOX_ENV=py35-oauth2client3
|
|
- python: "3.5"
|
|
env: TOX_ENV=py35-oauth2client4
|
|
install:
|
|
- pip install tox
|
|
- pip install . argparse
|
|
script: tox -e $TOX_ENV
|
|
after_success:
|
|
- if [[ "${TOX_ENV}" == "py27-oauth2client4" ]]; then tox -e coveralls; fi
|