Annotation of embedaddon/mtr/test/lint.sh, revision 1.1.1.1

1.1       misho       1: #!/bin/sh
                      2: 
                      3: #  Check the Python test source for good style
                      4: 
                      5: PYTHON_SOURCE=*.py
                      6: 
                      7: pep8 $PYTHON_SOURCE
                      8: pylint --reports=n $PYTHON_SOURCE 2>/dev/null
                      9: mypy --py2 $PYTHON_SOURCE

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>