blob: 1edb7572f1c9933baf162b9d93f092c761e3fc27 [file] [log] [blame]
language: python
python:
- "2.7"
- "3.2"
- "3.3"
env:
- PYFLAKES=''
- PYFLAKES='apt-get'
before_install:
- pip --quiet install coverage
- if [ "$PYFLAKES" == "apt-get" ]; then sudo apt-get install --quiet=2 pyflakes; fi
install:
- python setup.py --quiet install
script:
- python test_autoflake.py
- python test_acid.py test_acid.py
- coverage run test_autoflake.py; true
- coverage report --show-missing --omit='*/distutils/*'; true