astara/.travis.yml
Rosario Di Somma 1351be101d Make flake8 ignore E731 error
Part of the code we copied from neutron is now failing due to
a new flake8 default rule. This changes makes tox and travis
ignore it.

Change-Id: I99a30e0f41e295036f62f8f27e50cd96e77d909d
Signed-off-by: Rosario Di Somma <rosario.disomma@dreamhost.com>
2015-02-10 08:34:17 -08:00

10 lines
272 B
YAML

language: python
python:
- "2.7"
install:
- pip install -r test_requirements.txt --use-mirrors
- pip install flake8 --use-mirrors
- pip install -q . --use-mirrors
before_script:
- flake8 setup.py akanda --ignore=E123,E133,E226,E241,E242,E731
script: nosetests -d