-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.toml
More file actions
42 lines (34 loc) · 802 Bytes
/
Makefile.toml
File metadata and controls
42 lines (34 loc) · 802 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
40
41
42
[tasks.format]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--", "--emit=files"]
[tasks.clean]
command = "cargo"
args = ["clean"]
[tasks.setup-python]
command = "poetry"
args = ["install","-C","./test_gen"]
[tasks.build]
command = "cargo"
args = ["build"]
dependencies = ["clean","setup-python"]
[tasks.test-test-gen]
command = "poetry"
args = ["run","-C","./test_gen","pytest"]
[tasks.test-gen]
command = "poetry"
args = ["run", "-C","./test_gen","python","./test_gen/convert.py"]
[tasks.test]
command = "cargo"
args = ["test"]
dependencies = ["clean","test-test-gen","test-gen"]
[tasks.test-noisy]
command = "cargo"
args = ["test","--", "--nocapture"]
dependencies = ["build","test-test-gen","test-gen"]
[tasks.my-flow]
dependencies = [
"format",
"build",
"test"
]