remove infra.md.example, infra.md is the source of truth
This commit is contained in:
25
ayn-antivirus/Makefile
Normal file
25
ayn-antivirus/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
.PHONY: install dev-install test lint scan update-sigs clean
|
||||
|
||||
install:
|
||||
pip install .
|
||||
|
||||
dev-install:
|
||||
pip install -e ".[dev]"
|
||||
|
||||
test:
|
||||
pytest --cov=ayn_antivirus tests/
|
||||
|
||||
lint:
|
||||
ruff check ayn_antivirus/
|
||||
black --check ayn_antivirus/
|
||||
|
||||
scan:
|
||||
ayn-antivirus scan
|
||||
|
||||
update-sigs:
|
||||
ayn-antivirus update
|
||||
|
||||
clean:
|
||||
rm -rf build/ dist/ *.egg-info .pytest_cache .coverage
|
||||
find . -type d -name __pycache__ -exec rm -rf {} +
|
||||
find . -type f -name '*.pyc' -delete
|
||||
Reference in New Issue
Block a user