forked from SeequentEvo/evo-data-converters
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (27 loc) · 962 Bytes
/
Makefile
File metadata and controls
40 lines (27 loc) · 962 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
33
34
35
36
37
38
39
lint:
uv run --only-dev ruff check
uv run --only-dev ruff format --check
lint-fix:
uv run --only-dev ruff format
test:
uv run pytest .
test-common:
uv run --package evo-data-converters-common pytest packages/common/tests
test-duf:
uv run --package evo-data-converters-duf pytest packages/duf/tests
test-gocad:
uv run --package evo-data-converters-gocad pytest packages/gocad/tests
test-image:
uv run --package evo-data-converters-image pytest packages/image/tests
test-obj:
uv run --package evo-data-converters-obj pytest packages/obj/tests
test-omf:
uv run --package evo-data-converters-omf pytest packages/omf/tests
test-resqml:
uv run --package evo-data-converters-resqml pytest packages/resqml/tests
test-ubc:
uv run --package evo-data-converters-ubc pytest packages/ubc/tests
test-vtk:
uv run --package evo-data-converters-vtk pytest packages/vtk/tests
test-xyz:
uv run --package evo-data-converters-xyz pytest packages/xyz/tests