-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
81 lines (59 loc) · 1.44 KB
/
Makefile
File metadata and controls
81 lines (59 loc) · 1.44 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Makefile
define HELP_MESSAGE
firmware
# Installing
1. Create/Update Conda env and install dev deps: `make setup`
2. Activate the environment: `conda activate firmware`
# Running Tests
1. Run autoformatting: `make format`
2. Run static checks: `make static-checks`
3. Run unit tests: `make test`
endef
export HELP_MESSAGE
all:
@echo "$$HELP_MESSAGE"
.PHONY: all
# ------------------------ #
# PyPI Build #
# ------------------------ #
build-for-pypi:
@pip install --verbose build wheel twine
@python -m build --sdist --wheel --outdir dist/ .
@twine upload dist/*
.PHONY: build-for-pypi
push-to-pypi: build-for-pypi
@twine upload dist/*
.PHONY: push-to-pypi
# ------------------------ #
# Static Checks #
# ------------------------ #
py-files := $(shell find . -name '*.py')
format:
@ruff format $(py-files)
@ruff check --fix $(py-files)
.PHONY: format
static-checks:
@ruff check $(py-files)
@mypy --install-types --non-interactive $(py-files)
.PHONY: lint
# ------------------------ #
# Unit tests #
# ------------------------ #
test:
python -m pytest
.PHONY: test
# ------------------------ #
# Conda Environment #
# ------------------------ #
ENV ?= firmware
conda-create:
bash scripts/setup-conda.sh $(ENV)
.PHONY: conda-create
conda-update:
bash scripts/setup-conda.sh $(ENV)
.PHONY: conda-update
install-dev:
@pip install -e .[dev]
.PHONY: install-dev
setup: conda-create
.PHONY: setup