generated from cvxgrp/simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
50 lines (39 loc) · 1.21 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.DEFAULT_GOAL := help
SHELL=/bin/bash
UNAME=$(shell uname -s)
.PHONY: install
install: ## Install a virtual environment
@poetry install -vv
.PHONY: fmt
fmt: ## Run autoformatting and linting
@poetry run pip install pre-commit
@poetry run pre-commit install
@poetry run pre-commit run --all-files
.PHONY: test
test: install ## Run tests
@poetry run pytest
.PHONY: clean
clean: ## Clean up caches and build artifacts
@git clean -X -d -f
.PHONY: coverage
coverage: install ## test and coverage
@poetry run coverage run --source=cvx/. -m pytest
@poetry run coverage report -m
@poetry run coverage html
@if [ ${UNAME} == "Darwin" ]; then \
open htmlcov/index.html; \
elif [ ${UNAME} == "linux" ]; then \
xdg-open htmlcov/index.html 2> /dev/null; \
fi
.PHONY: help
help: ## Display this help screen
@echo -e "\033[1mAvailable commands:\033[0m"
@grep -E '^[a-z.A-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-18s\033[0m %s\n", $$1, $$2}' | sort
.PHONY: jupyter
jupyter: install ## Run jupyter lab
@poetry run pip install jupyterlab
@poetry run jupyter lab
.PHONY: boil
boil: ## Update the boilerplate code
@poetry run pip install cvxcooker
@poetry run cook pyproject.toml