forked from hofstadter-io/hof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cue
80 lines (69 loc) · 1.17 KB
/
test.cue
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package hof
GoTest: {
@task(os.Exec)
cmd: ["bash", "-c", scripts.DEV]
}
scripts: {
DEV: string | *"""
rm -rf .workdir
go test -cover ./
"""
CI: string | *"""
rm -rf .workdir
go test -cover ./ -coverprofile cover.out -json > tests.json
"""
}
watchTest: {
@flow(watch/test)
watch: {
@task(fs.Watch)
first: true
globs: [
"lib/structural/**/*.*",
]
handler: {
event?: _
compile: {
@task(os.Exec)
cmd: ["hof", "flow", "-f", "test/hack"]
}
}
}
}
tests: {
// want to discover nested too
// @flow(test)
hack: {
test: string | *"TestMainFlow" @tag(test)
@flow(test/hack)
prt: { text: "testing: \(test)\n" } @task(os.Stdout)
run: {
@task(os.Exec)
cmd: ["bash", "-c", script]
dir: "flow"
script: """
rm -rf .workdir
go test -run \(test) .
"""
}
}
flow: {
@flow(test/flow)
run: GoTest & {
// dir: "lib/flow" // panics, segfault
dir: "flow"
}
}
st: {
@flow(test/st)
run: GoTest & {
dir: "lib/structural"
}
}
mods: {
@flow(test/mods)
run: GoTest & {
dir: "lib/mods"
}
}
}