view Makefile @ 144:76dea27af878

* Make the `<python:unittest>` command strip the base dir from file names in the report. Fixes #42. * Yield reports in the order they were generated. * The `testrunner` now splits the test name into `name` and `fixture` components (the former is commonly the name of the test function, while the latter is the name of the `TestCase` subclass. * Parse descriptions of doctests to extract the test fixture. * Add option to the `build.py` script to enable output of generated reports to the console.t
author cmlenz
date Sat, 20 Aug 2005 13:29:56 +0000
parents 4289fa18de0f
children
line wrap: on
line source
PYLINT_MSGS = C0101,E0201,E0213,W0103,W0704,R0921,R0923
PYTHONPATH = .

all: pylint

pylint:
	PYTHONPATH=$(PYTHONPATH) pylint --parseable=yes --include-ids=yes \
	--disable-msg=$(PYLINT_MSGS) --ignore=tests \
	bitten > build/pylint-results.txt
Copyright (C) 2012-2017 Edgewall Software