forked from kscalelabs/zbot-unit-tests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
63 lines (46 loc) · 1.15 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
51
52
53
54
55
56
57
58
59
60
61
62
63
# Makefile
define HELP_MESSAGE
kbot-unit-tests
# Installing
1. Create a new Conda environment: `conda create --name kbot-unit-tests python=3.11`
2. Activate the environment: `conda activate kbot-unit-tests`
3. Install the package: `make install-dev`
# 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
# ------------------------ #
# Static Checks #
# ------------------------ #
py-files := $(shell find . -name '*.py')
format:
@black $(py-files)
@ruff format $(py-files)
.PHONY: format
static-checks:
@black --diff --check $(py-files)
@ruff check $(py-files)
@mypy --install-types --non-interactive $(py-files)
.PHONY: lint
# ------------------------ #
# Unit tests #
# ------------------------ #
test-00:
python -m kbot_unit_tests.test_00
.PHONY: test-00
test-01:
python -m kbot_unit_tests.test_01
.PHONY: test-01
test-02:
python -m kbot_unit_tests.test_02
.PHONY: test-02
test-03:
python -m kbot_unit_tests.test_03
.PHONY: test-03
test: test-00 test-01 test-02 test-03
.PHONY: test