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
|
check:
pep8 untokenize.py setup.py test_acid.py
pep257 untokenize.py setup.py test_acid.py
pylint \
--rcfile=/dev/null \
--reports=no \
--disable=invalid-name \
untokenize.py setup.py test_acid.py
check-manifest
python setup.py --long-description | rst2html --strict > /dev/null
scspell untokenize.py setup.py test_untokenize.py test_acid.py README.rst
coverage:
@rm -f .coverage
@coverage run test_untokenize.py
@coverage report
@coverage html
@rm -f .coverage
@python -m webbrowser -n "file://${PWD}/htmlcov/index.html"
mutant:
@mut.py -t untokenize -u test_untokenize -mc
readme:
@restview --long-description --strict
|