Mercurial > bitten > bitten-test
annotate Makefile @ 2:3ba3fb6f0054
Generate coverage data in the distutils {{{unittest}}} command.
author | cmlenz |
---|---|
date | Sun, 22 May 2005 20:11:22 +0000 |
parents | 0b2a3581c48d |
children | 9ac0ee86ec7c |
rev | line source |
---|---|
0 | 1 PYLINT_MSGS = C0101,E0201,E0213,W0103,W0704,R0921,R0923 |
2 | |
3 all: pylint test | |
4 | |
5 pylint: | |
6 PYTHONPATH=.:../Trac/trunk pylint --parseable=y --disable-msg=$(PYLINT_MSGS) --ignore=tests bitten > build/pylint.txt | |
7 | |
8 #test: | |
9 # find . -name *.pyc | xargs rm | |
10 # PYTHONPATH=. trac/test.py |