blob: d24a595de1701664a0134f11ded6ec2e25c18009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
release:
umask 022 && chmod -R a+rX . && python setup.py sdist bdist_wheel
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
|