~smoser/simplestreams/add-aliases

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Scott Moser
  • Date: 2014-07-15 21:37:26 UTC
  • mto: This revision was merged to the branch mainline in revision 353.
  • Revision ID: smoser@ubuntu.com-20140715213726-tuodmu7b0jkzgs62
switch pylint to pyflakes

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        $(TENV) nosetests3 -v tests/
21
21
test2: examples-sign
22
22
        $(TENV) nosetests -v tests/
23
 
lint:
24
 
        $(TENV) ./tools/run-pylint
 
23
 
 
24
lint: pyflakes
 
25
 
 
26
pyflakes: pyflakes2 pyflakes3
 
27
 
 
28
pyflakes2:
 
29
        $(TENV) env ./tools/run-pyflakes
 
30
 
 
31
pyflakes3:
 
32
        $(TENV) env ./tools/run-pyflakes3
25
33
 
26
34
pep8:
27
35
        ./tools/run-pep8
63
71
        done
64
72
 
65
73
 
66
 
.PHONY: check exdata/fake exdata/data exdata-query examples-sign test test2 test3
 
74
.PHONY: check exdata/fake exdata/data exdata-query examples-sign test test2 test3 lint lint2 lint3