-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples-report.json
More file actions
184 lines (184 loc) · 7.61 KB
/
Copy pathexamples-report.json
File metadata and controls
184 lines (184 loc) · 7.61 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"tool": "jython2py3",
"version": "0.1.0",
"files": [
{
"source": "examples\\jython\\01_reserved_objects.py",
"output": null,
"changed": true,
"transform_count": 9,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\02_python2_syntax.py",
"output": null,
"changed": true,
"transform_count": 12,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\03_release_orchestration.py",
"output": null,
"changed": true,
"transform_count": 11,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\04_release_report.py",
"output": null,
"changed": true,
"transform_count": 10,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\05_release_variables.py",
"output": null,
"changed": true,
"transform_count": 11,
"todo_count": 3,
"todos": [
"# TODO[jython2py3] removed Java import `from java.util import HashMap`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] augmented assignment on releaseVariables[...] is read+write; split into getReleaseVariable/setReleaseVariable (guide section 8)",
"# TODO[jython2py3] `releaseVariables` has no direct getter/setter form here; rewrite this use with getReleaseVariable/setReleaseVariable by hand (guide section 8)"
],
"error_count": 1,
"errors": [
"# ERROR[jython2py3] don't use Java in Python 3: `HashMap` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)"
],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\06_variable_edge_cases.py",
"output": null,
"changed": true,
"transform_count": 8,
"todo_count": 3,
"todos": [
"# TODO[jython2py3] `releaseVariables` has no direct getter/setter form here; rewrite this use with getReleaseVariable/setReleaseVariable by hand (guide section 8)",
"# TODO[jython2py3] `releaseVariables` has no direct getter/setter form here; rewrite this use with getReleaseVariable/setReleaseVariable by hand (guide section 8)",
"# TODO[jython2py3] replace `del releaseVariables[...]` manually (guide section 8)"
],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\07_http_request.py",
"output": null,
"changed": true,
"transform_count": 4,
"todo_count": 1,
"todos": [
"# TODO[jython2py3] rewrite this HttpRequest call using the `requests` library (guide section 9)"
],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\08_java_interop.py",
"output": null,
"changed": true,
"transform_count": 0,
"todo_count": 8,
"todos": [
"# TODO[jython2py3] removed Java import `import java`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.util import Calendar`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.text import SimpleDateFormat`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.util import Properties`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.util import Arrays`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.util import UUID`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.util.regex import Pattern`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] removed Java import `from java.math import BigDecimal`; replace its usages with a Python 3 equivalent (guide section 11)"
],
"error_count": 9,
"errors": [
"# ERROR[jython2py3] don't use Java in Python 3: `SimpleDateFormat` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `Calendar` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `Calendar` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `Properties` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `Arrays` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `UUID` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `Pattern` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `BigDecimal` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)",
"# ERROR[jython2py3] don't use Java in Python 3: `java.text.SimpleDateFormat` is a JVM class that the container cannot load - replace it with a Python 3 equivalent (guide section 11)"
],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\jython\\09_deploy_pipeline.py",
"output": null,
"changed": true,
"transform_count": 6,
"todo_count": 2,
"todos": [
"# TODO[jython2py3] removed Java import `from java.util import HashMap`; replace its usages with a Python 3 equivalent (guide section 11)",
"# TODO[jython2py3] rewrite this HttpRequest call using the `requests` library (guide section 9)"
],
"error_count": 0,
"errors": [],
"tasks_converted": null,
"failure": null
},
{
"source": "examples\\templates\\jython\\01_mixed_task_types.yaml",
"output": null,
"changed": true,
"transform_count": 5,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": 1,
"failure": null
},
{
"source": "examples\\templates\\jython\\02_release_pipeline.yaml",
"output": null,
"changed": true,
"transform_count": 5,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": 2,
"failure": null
},
{
"source": "examples\\templates\\jython\\03_nested_tasks.yaml",
"output": null,
"changed": true,
"transform_count": 4,
"todo_count": 0,
"todos": [],
"error_count": 0,
"errors": [],
"tasks_converted": 2,
"failure": null
}
]
}