cucu 1.3.3__py3-none-any.whl → 1.3.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cucu might be problematic. Click here for more details.
cucu/db.py
CHANGED
|
@@ -117,7 +117,7 @@ class step(BaseModel):
|
|
|
117
117
|
text = TextField(null=True)
|
|
118
118
|
table_data = JSONField(null=True)
|
|
119
119
|
location = TextField()
|
|
120
|
-
is_substep = BooleanField()
|
|
120
|
+
is_substep = BooleanField(null=True) # info available after step ends
|
|
121
121
|
has_substeps = BooleanField()
|
|
122
122
|
status = TextField(null=True)
|
|
123
123
|
duration = FloatField(null=True)
|
|
@@ -200,7 +200,6 @@ def start_step_record(ctx, step_obj):
|
|
|
200
200
|
text=step_obj.text if step_obj.text else None,
|
|
201
201
|
table_data=table if step_obj.table else None,
|
|
202
202
|
location=str(step_obj.location),
|
|
203
|
-
is_substep=step_obj.is_substep,
|
|
204
203
|
has_substeps=step_obj.has_substeps,
|
|
205
204
|
section_level=getattr(step_obj, "section_level", None),
|
|
206
205
|
start_at=step_obj.start_at,
|
|
@@ -227,6 +226,7 @@ def finish_step_record(step_obj, duration):
|
|
|
227
226
|
parent_seq=step_obj.parent_seq,
|
|
228
227
|
has_substeps=step_obj.has_substeps,
|
|
229
228
|
status=step_obj.status.name,
|
|
229
|
+
is_substep=step_obj.is_substep,
|
|
230
230
|
duration=duration,
|
|
231
231
|
end_at=step_obj.end_at,
|
|
232
232
|
debug_output=step_obj.debug_output,
|
|
@@ -12,7 +12,7 @@ cucu/cli/run.py,sha256=pIymhrx3w-dCkvh-YqSH9HldCPEgMB0MxDNHgS-RvFY,5935
|
|
|
12
12
|
cucu/cli/steps.py,sha256=lg5itVH_C-0_3RelWXv9X2qQUHggdxuxLCGwH5l1bf4,4210
|
|
13
13
|
cucu/cli/thread_dumper.py,sha256=Z3XnYSxidx6pqjlQ7zu-TKMIYZWk4z9c5YLdPkcemiU,1593
|
|
14
14
|
cucu/config.py,sha256=5AE6GrkqzjNhzzrB-eZrINgeztV7CCGuSdWJ-5GtWhk,14939
|
|
15
|
-
cucu/db.py,sha256=
|
|
15
|
+
cucu/db.py,sha256=hQg54M7LvCIO-5Pluw5CR0jvC_0MXxrUAyhctoLCGKU,11865
|
|
16
16
|
cucu/edgedriver_autoinstaller/README.md,sha256=tDkAWIqgRdCjt-oX1nYqikIC_FfiOEM2-pc5S5VbRLo,84
|
|
17
17
|
cucu/edgedriver_autoinstaller/__init__.py,sha256=fo6xJJPvcc5Xvni8epXfxDoPxJH5_b6Vk2jD9JTwfRs,969
|
|
18
18
|
cucu/edgedriver_autoinstaller/utils.py,sha256=iRKTww77CGaTAntt_QDvxlKPxpMU4otx95OeD97khcM,6802
|
|
@@ -87,7 +87,7 @@ cucu/steps/text_steps.py,sha256=Jj_GHoHeemNwVdUOdqcehArNp7WM-WMjljA4w0pLXuw,2576
|
|
|
87
87
|
cucu/steps/variable_steps.py,sha256=WSctH3_xcxjijGPYZlxp-foC_SIAAKtF__saNtgZJbk,2966
|
|
88
88
|
cucu/steps/webserver_steps.py,sha256=wWkpSvcSMdiskPkh4cqlepWx1nkvEpTU2tRXQmPDbyo,1410
|
|
89
89
|
cucu/utils.py,sha256=LCcs8sMzvdvH05N8P5QYO4lO6j-_PQC530mEAD96go8,10957
|
|
90
|
-
cucu-1.3.
|
|
91
|
-
cucu-1.3.
|
|
92
|
-
cucu-1.3.
|
|
93
|
-
cucu-1.3.
|
|
90
|
+
cucu-1.3.4.dist-info/WHEEL,sha256=4n27za1eEkOnA7dNjN6C5-O2rUiw6iapszm14Uj-Qmk,79
|
|
91
|
+
cucu-1.3.4.dist-info/entry_points.txt,sha256=11WRIhQM7LuUnQg1lAoZQoNvvBvYNN1maDgQS4djwJo,40
|
|
92
|
+
cucu-1.3.4.dist-info/METADATA,sha256=jrpEcbly42DGq9wJyh8Mh6qvcXYr_izwqyDe-h4cCtA,16705
|
|
93
|
+
cucu-1.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|