Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 557f893

Browse files
committedJan 16, 2025··
ci: disable docstrings tests on macOS 13
1 parent 52d1cfb commit 557f893

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎scripts/test.js

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
const cp = require("child_process");
33
const path = require("path");
44
const fs = require("fs");
5+
const os = require("os");
56
const { rescript_exe } = require("#cli/bin_path");
67

78
const duneBinDir = require("./dune").duneBinDir;
@@ -125,6 +126,8 @@ async function runTests() {
125126
if (runtimeDocstrings) {
126127
if (process.platform === "win32") {
127128
console.log(`Skipping docstrings tests on ${process.platform}`);
129+
} else if (process.platform === "darwin" && os.release().startsWith("22")) {
130+
console.log("Skipping docstrings tests on macOS 13")
128131
} else {
129132
console.log("Running runtime docstrings tests");
130133

0 commit comments

Comments
 (0)
Please sign in to comment.