From 363215b9417c886e68ba87899fcd03a0e71ae58e Mon Sep 17 00:00:00 2001 From: WillB97 Date: Sun, 1 Oct 2023 11:50:00 +0100 Subject: [PATCH] Drop makefile --- Makefile | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index f563fd4..0000000 --- a/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -.PHONY: lint type test isort isort-check build upload - -PYMODULE:=april_vision -TESTS:=tests - -all: lint isort-check type test - -lint: - ruff check $(PYMODULE) - -type: - mypy $(PYMODULE) - -test: - pytest --cov=$(PYMODULE) --cov-report=term --cov-report=xml $(TESTS) - -fix: - ruff check --fix-only $(PYMODULE) - -build: - python -m build - -upload: - twine upload dist/* - -clean: - rm -rf dist/* build/*