.travis.yml 256 字节
Newer Older
L
LaraStuStu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
sudo: false

cache:
  - pip

dist: trusty

language: python

python:
  - '3.6'
  - '2.7'

branches:
  only:
    - master

notifications:
  email: false

install:
  - true  # drop pip install -r requirements.txt

script:
  - pip install flake8
  - flake8 .