游雁
2023-03-30 c4882b43fce3c32cb0ce3c9fc2c164f0ce0e8213
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: false
language: python
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
matrix:
  include:
    - { python: 3.6, env: TOXENV=flake8 }
    - { python: 3.6, env: TOXENV=isort }
    # Py37 requires xenial distrubution and sudo
    # See travis-ci/travis-ci#9069
    - { python: 3.7, dist: xenial, sudo: true }
 
install:
  - pip install tox-travis
  - pip install coveralls
script: tox
after_success: if [ -e .coverage ]; then coveralls; fi