forked from Netflix/metaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontexts.json
More file actions
89 lines (89 loc) · 2.85 KB
/
contexts.json
File metadata and controls
89 lines (89 loc) · 2.85 KB
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
80
81
82
83
84
85
86
87
88
89
{
"contexts": [
{
"name": "python2-all-local",
"disabled": false,
"env": {
"USER": "tester",
"METAFLOW_RUN_BOOL_PARAM": "False",
"METAFLOW_RUN_NO_DEFAULT_PARAM": "test_str"
},
"python": "python2",
"top_options": [
"--metadata=local",
"--datastore=local",
"--environment=local",
"--event-logger=nullSidecarLogger",
"--no-pylint",
"--quiet"
],
"run_options": [
"--max-workers", "50",
"--max-num-splits", "10000",
"--tag", "\u523a\u8eab means sashimi",
"--tag", "multiple tags should be ok"
],
"checks": ["python2-cli", "python3-cli"],
"disabled_tests": [
"LargeArtifactTest"
]
},
{
"name": "python3-all-local",
"disabled": false,
"env": {
"USER": "tester",
"METAFLOW_RUN_BOOL_PARAM": "False",
"METAFLOW_RUN_NO_DEFAULT_PARAM": "test_str"
},
"python": "python3",
"top_options": [
"--metadata=local",
"--datastore=local",
"--environment=local",
"--event-logger=nullSidecarLogger",
"--no-pylint",
"--quiet"
],
"run_options": [
"--max-workers", "50",
"--max-num-splits", "10000",
"--tag", "\u523a\u8eab means sashimi",
"--tag", "multiple tags should be ok"
],
"checks": ["python2-cli", "python3-cli"],
"disabled_tests": [
"LargeArtifactTest"
]
},
{
"name": "dev-local",
"disabled": true,
"env": {
"USER": "tester",
"METAFLOW_RUN_BOOL_PARAM": "False",
"METAFLOW_RUN_NO_DEFAULT_PARAM": "test_str"
},
"python": "python3",
"top_options": [
"--metadata=local",
"--datastore=local",
"--environment=local",
"--event-logger=nullSidecarLogger",
"--no-pylint",
"--quiet"
],
"run_options": [
"--max-workers", "50",
"--max-num-splits", "10000",
"--tag", "\u523a\u8eab means sashimi",
"--tag", "multiple tags should be ok"
],
"checks": ["python3-cli"]
}
],
"checks": {
"python2-cli": {"python": "python2", "class": "CliCheck"},
"python3-cli": {"python": "python3", "class": "CliCheck"}
}
}