14 lines
297 B
YAML
14 lines
297 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
install:
|
|
- pip install flake8
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
script: flake8 --exclude=jedi --select=F,C9 --max-complexity=10 python && ./install.sh
|
|
env:
|
|
- YCM_TESTRUN=1 EXTRA_CMAKE_ARGS=""
|
|
- YCM_TESTRUN=1 EXTRA_CMAKE_ARGS="-DUSE_CLANG_COMPLETER=ON"
|