mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
14 lines
215 B
Makefile
14 lines
215 B
Makefile
|
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
|