Commit 6cbeb1e 1 parent 16d1396 commit 6cbeb1e Copy full SHA for 6cbeb1e
File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ function test_now_on_windows_without_without_powershell() {
54
54
}
55
55
56
56
function test_now_on_osx_without_perl() {
57
+ if check_os::is_windows; then
58
+ skip
59
+ return
60
+ fi
61
+
57
62
mock_macos
58
63
mock dependencies::has_perl mock_false
59
64
mock clock::shell_time echo " 1727708708.326957"
Original file line number Diff line number Diff line change @@ -288,10 +288,15 @@ function test_not_render_execution_time() {
288
288
}
289
289
290
290
function test_render_execution_time_on_osx_without_perl() {
291
- local render_result
291
+ if check_os::is_windows; then
292
+ skip
293
+ return
294
+ fi
295
+
292
296
mock_macos
293
297
mock dependencies::has_perl mock_false
294
- EPOCHREALTIME=1727769354.7084441185
298
+ EPOCHREALTIME=1727771758.0664479733
299
+ local render_result
295
300
render_result=$(
296
301
console_results::render_result
297
302
)
@@ -300,6 +305,11 @@ function test_render_execution_time_on_osx_without_perl() {
300
305
}
301
306
302
307
function test_render_execution_time_on_osx_with_perl() {
308
+ if check_os::is_windows; then
309
+ skip
310
+ return
311
+ fi
312
+
303
313
local render_result
304
314
mock_macos
305
315
mock dependencies::has_adjtimex mock_false
You can’t perform that action at this time.
0 commit comments