File: Makefile

package info (click to toggle)
wfuzz 3.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,648 kB
  • sloc: python: 13,161; makefile: 59; sh: 4
file content (44 lines) | stat: -rw-r--r-- 1,153 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.PHONY: docs
tox:
	pip install tox
	tox --recreate
test:
	pytest -v -s tests/
flake8:
	black --check src tests
	flake8 src tests
publish:
	pip install 'twine>=1.5.0'
	python setup.py sdist
	twine upload dist/*
	rm -fr build dist

publish-dev:
	pip install 'twine>=1.5.0'
	python setup.py sdist
	twine upload --repository-url https://test.pypi.org/legacy/ dist/*
	rm -fr build dist
docs:
	pip install -e ".[docs]"
	cd docs && make html

coverage:
	coverage report --skip-covered --include "*python3.8/site-packages/wfuzz*" -m

install: install-dev
	pip install -r requirements.txt

install-dev:
	pip install -e ".[dev]"

freeze:
	pip-compile --output-file requirements.txt setup.py
help:
	@echo "make help              Show this help message"
	@echo "make test              Run local tests with tox"
	@echo "make flake8            Run the code linter(s) and print any warnings"
	@echo "make publish           Publish pip lib to pypi"
	@echo "make publish-dev       Publish pip lib to pypi test"
	@echo "make docs              Create html docs"
	@echo "make install           Install requirements"
	@echo "make install-dev       Install dev requirements"