Files
Vlastislav Svatek 673e67106e
Some checks failed
ci / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
first commit
2026-06-05 10:39:05 +02:00

23 lines
359 B
Makefile

sources = netbox_librenms_plugin
.PHONY: test format lint unittest pre-commit clean
test: format lint unittest
format:
ruff format $(sources)
ruff check --select I --fix $(sources)
lint:
ruff check $(sources)
unittest:
pytest netbox_librenms_plugin/tests/ -v
pre-commit:
pre-commit run --all-files
clean:
rm -rf *.egg-info
rm -rf .tox dist site