-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (24 loc) · 739 Bytes
/
Makefile
File metadata and controls
32 lines (24 loc) · 739 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
32
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-notebooks:
uv run --directory code-samples --group test pytest tests/ -v
test:
@make test-common
@make test-files
@make test-objects
@make test-colormaps
@make test-widgets