-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (22 loc) · 489 Bytes
/
Makefile
File metadata and controls
31 lines (22 loc) · 489 Bytes
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
format:
@ruff check --select I --fix
@ruff format .
@echo Ruff formatting completed.
ruff-lint:
@echo Running ruff check...
@ruff check
@echo Ruff linter check completed.
pylint:
@echo Running pylint check...
@pylint examples/ rocketserializer/ tests/
@echo Pylint check completed.
lint: ruff-lint pylint
tests:
pytest
# tests-unit:
# tests-acceptance:
# tests-integration:
install:
pip install -r requirements.in
pip install -r requirements-dev.txt
pip install -e .