summaryrefslogtreecommitdiff
path: root/Makefile
blob: 887cb26d274e23a9274b167a994910c1c2a21db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
test :
	python pep8.py --testsuite testsuite

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

doctest :
	python pep8.py --doctest

alltest : test selftest doctest

multitest :
	python2.5 pep8.py --testsuite testsuite
	python2.6 pep8.py --testsuite testsuite
	python2.7 pep8.py --testsuite testsuite
	python3.1 pep8.py --testsuite testsuite
	python3.2 pep8.py --testsuite testsuite
	python2.5 pep8.py --doctest
	python2.6 pep8.py --doctest
	python2.7 pep8.py --doctest
	python3.1 pep8.py --doctest
	python3.2 pep8.py --doctest
	python2.5 pep8.py --statistics pep8.py
	python2.6 pep8.py --statistics pep8.py
	python2.7 pep8.py --statistics pep8.py
	python3.1 pep8.py --statistics pep8.py
	python3.2 pep8.py --statistics pep8.py