Skip to content

Commit 16cf8df

Browse files
committed
tests only on linux
1 parent 268c521 commit 16cf8df

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -314,16 +314,6 @@ jobs:
314314
- name: Version Check
315315
run: ./scripts/prebuilt.js
316316

317-
- name: Debug
318-
run: ulimit -a
319-
320-
- name: Increase max user processes
321-
if: runner.os == 'macOS'
322-
run: ulimit -u 62080
323-
324-
- name: Debug
325-
run: ulimit -a
326-
327317
- name: Run tests
328318
run: node scripts/test.js -all
329319

scripts/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ async function runTests() {
128128
}
129129

130130
if (runtimeDocstrings) {
131-
if (process.platform === "win32") {
132-
console.log("Skipping docstrings tests on Windows");
131+
if (process.platform !== "linux") {
132+
console.log(`Skipping docstrings tests on ${process.platform}`);
133133
} else {
134134
console.log("Running runtime docstrings tests");
135135
cp.execSync(`${rescript_exe} build`, {

0 commit comments

Comments
 (0)