forked from SeequentEvo/evo-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 659 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 659 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
lint:
uv run --only-dev ruff check
uv run --only-dev ruff format --check
lint-fix:
uv run --only-dev ruff check --fix
uv run --only-dev ruff format
test-common:
uv run --package evo-sdk-common pytest packages/evo-sdk-common/tests
test-files:
uv run --package evo-files pytest packages/evo-files/tests
test-objects:
uv run --package evo-objects pytest packages/evo-objects/tests
test-colormaps:
uv run --package evo-colormaps pytest packages/evo-colormaps/tests
test-widgets:
uv run --package evo-widgets pytest packages/evo-widgets/tests
test:
@make test-common
@make test-files
@make test-objects
@make test-colormaps
@make test-widgets