File: Makefile

package info (click to toggle)
python-untokenize 0.1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: python: 325; makefile: 35
file content (25 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (3)
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