~andreserl/maas/python3_qa_lab_tests

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gavin Panella
  • Date: 2015-06-22 10:18:09 UTC
  • mto: This revision was merged to the branch mainline in revision 271.
  • Revision ID: gavin.panella@canonical.com-20150622101809-vbcbdyfzbgroinra
Set same flake8 options as MAAS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
lint-py: sources = $(wildcard *.py)
5
5
lint-py:
6
 
        flake8 $(sources)
 
6
        flake8 --ignore=E123 --config=/dev/null $(sources)
7
7
 
8
8
.PHONY: lint lint-py