makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
7
8
9
10
11
## makectl: description="Run Python tests with pytest"
PYTHON ?= python3
VENV ?= .venv

.PHONY: test
test: ## Run tests
	$(VENV)/bin/pytest tests/ -v

.PHONY: test-cov
test-cov: ## Run tests with coverage
	$(VENV)/bin/pytest tests/ -v --cov --cov-report=term-missing