.travis.yml 230 Bytes
Newer Older
1
dist: xenial
Kai Chen's avatar
Kai Chen committed
2
3
4
language: python

install:
5
  - pip install isort flake8 yapf 
Kai Chen's avatar
Kai Chen committed
6
7
8
9

python:
  - "3.5"
  - "3.6"
10
  - "3.7"
Kai Chen's avatar
Kai Chen committed
11
12

script:
13
  - flake8
14
  - isort -rc --check-only --diff mmdet/ tools/
15
  - yapf -r -d --style .style.yapf mmdet/ tools/