-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.json
57 lines (54 loc) · 1.18 KB
/
deploy.json
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
{
"type": "delphi deploy config",
"version": 1,
"paths": {
"package": "../delphi/nowcast_datasetname"
},
"actions": [
"// nowcasting sources",
{
"type": "move",
"src": "src/",
"dst": "[[package]]/",
"match": "^(.+)(\\.py)$",
"add-header-comment": true
},
{
"type": "move",
"src": "src/experiments/",
"dst": "[[package]]/experiments/",
"match": "^(.+)(\\.py)$",
"add-header-comment": true
},
{
"type": "move",
"src": "src/fusion/",
"dst": "[[package]]/fusion/",
"match": "^(.+)(\\.py)$",
"add-header-comment": true
},
{
"type": "move",
"src": "src/sensors/",
"dst": "[[package]]/sensors/",
"match": "^(.+)(\\.py)$",
"add-header-comment": true
},
{
"type": "move",
"src": "src/targets/",
"dst": "[[package]]/targets/",
"match": "^(.+)(\\.py)$",
"add-header-comment": true
},
{
"type": "move",
"src": "src/util/",
"dst": "[[package]]/util/",
"match": "^(.+)(\\.py)$",
"add-header-comment": true
},
"// run unit and coverage tests",
{"type": "py3test"}
]
}