summaryrefslogtreecommitdiff
path: root/Makefile
blob: d46e599ce9396ef62597b7a1fb32e80157ce6699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
release:
	umask 022 && chmod -R a+rX . && python setup.py sdist bdist_wheel
	# twine upload dist/*

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