blob: 837c59d79cdd19f04575bd2fd3a265117b931322 [file] [log] [blame]
language: python
python:
- "2.7"
install:
- pip install pep8 flake8
script:
# we want pyflakes to check all files for unused imports only
# we use flake8 because it allows us to ignore other warnings
# exclude the thrift directories - they contain auto-generated code
- flake8 --ignore=E501,F811,F812,F822,F823,F831,F841,N8,C9 --exclude=thrift_bindings,cassandra-thrift .
- git remote add riptano git://github.com/riptano/cassandra-dtest.git
- git fetch riptano # fetch master for the next diff
# feed changed lines with no context around them to pep8
# I know we don't enforce line length but if you introduce
# 200-char lines you are doing something terribly wrong.
# lint all files for everything but line length errors
- git diff riptano/master...HEAD -U0 | pep8 --ignore=E501 --diff
# lint all files except json_test.py for line length errors
- git diff riptano/master...HEAD -U0 | pep8 --diff --exclude='json_test.py' --exclude='meta_tests/assertion_test.py' --max-line-length=200
sudo: false