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

selftest :
	python pep8.py --statistics pep8.py

doctest :
	python pep8.py --doctest

unittest :
	python -m testsuite.test_all

alltest : test selftest doctest unittest