Update Makefile

modern_python
XenGi 2023-03-23 15:11:17 +00:00
rodzic 5913f9e2c9
commit 2e2f0c9adc
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -19,13 +19,13 @@ clean: ## Clean up project directory
docs: ## Generate documentation
sphinx-build -E docs docs/_build
test: ## Run tests
test: clean build ## Run tests
pytest
test-coverage: clean ## Generate coverage
test-coverage: clean build ## Generate coverage
pytest --cov=gerbonara --cov-report=xml
html: clean ## Generate coverage html
html: clean build ## Generate coverage html
pytest --cov-report html:htmlcov --cov=gerbonara
install: ## Install locally