summaryrefslogtreecommitdiff
path: root/Makefile
blob: e096cc3b7c81d28f0c1df0b9504114d03d08c769 (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
28
29
30
31
32
33
test :
	python pep8.py --testsuite testsuite

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

doctest :
	python pep8.py --doctest

alltest : test selftest doctest

multitest :
	python2.3 pep8.py --testsuite testsuite
	python2.4 pep8.py --testsuite testsuite
	python2.5 pep8.py --testsuite testsuite
	python2.6 pep8.py --testsuite testsuite
	python2.7 pep8.py --testsuite testsuite
	python3.0 pep8.py --testsuite testsuite
	python3.1 pep8.py --testsuite testsuite
	python2.3 pep8.py --doctest
	python2.4 pep8.py --doctest
	python2.5 pep8.py --doctest
	python2.6 pep8.py --doctest
	python2.7 pep8.py --doctest
	python3.0 pep8.py --doctest
	python3.1 pep8.py --doctest
	python2.3 pep8.py --repeat --statistics pep8.py
	python2.4 pep8.py --repeat --statistics pep8.py
	python2.5 pep8.py --repeat --statistics pep8.py
	python2.6 pep8.py --repeat --statistics pep8.py
	python2.7 pep8.py --repeat --statistics pep8.py
	python3.0 pep8.py --repeat --statistics pep8.py
	python3.1 pep8.py --repeat --statistics pep8.py