summaryrefslogtreecommitdiff
path: root/Makefile
blob: 146a2cc47b0caab23e4c34100b3683f3b5f8dad9 (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 pep8.py

doctest :
	python pycodestyle.py --doctest

unittest :
	python -m testsuite.test_all

alltest : test selftest doctest unittest