summaryrefslogtreecommitdiff
path: root/Makefile
blob: 366f5807de5ac46283b539431b6eb2569c5e90bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
test :
	python pycodestyle.py --testsuite testsuite

selftest :
	python pycodestyle.py --statistics pycodestyle.py

doctest :
	python pycodestyle.py --doctest

unittest :
	python -m testsuite.test_all

alltest : test selftest doctest unittest