File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ const prettytime = (time_ns) => {
69
69
i += 1
70
70
result /= 1000
71
71
}
72
- const roundedtime = result . toFixed ( time_ns < 10 || result >= 100.0 ? 0 : 1 )
72
+ const roundedtime = result . toFixed ( time_ns < 100 || result >= 100.0 ? 0 : 1 )
73
73
74
74
return roundedtime + "\xa0" + prefices [ i ] + "s"
75
75
}
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ import Distributed
177
177
# and also that Pluto can figure out the execution order on its own
178
178
@test all (noerror, notebook. cells)
179
179
180
+ WorkspaceManager. unmake_workspace ((π, notebook))
180
181
π. options. evaluation. workspace_use_distributed = false
181
182
end
182
183
@@ -355,6 +356,7 @@ import Distributed
355
356
@test notebook. cells[4 ] |> noerror
356
357
@test notebook. cells[1 ]. output. body == " \" double_december = 24\" "
357
358
359
+ WorkspaceManager. unmake_workspace ((π, notebook))
358
360
π. options. evaluation. workspace_use_distributed = false
359
361
end
360
362
@@ -376,6 +378,7 @@ import Distributed
376
378
@test :conj β notebook. topology. nodes[notebook. cells[1 ]]. references
377
379
@test notebook. cells[1 ]. output. body == " 200"
378
380
381
+ WorkspaceManager. unmake_workspace ((π, notebook))
379
382
π. options. evaluation. workspace_use_distributed = false
380
383
end
381
384
You canβt perform that action at this time.
0 commit comments