Skip to content

Commit

Permalink
fix: disable CI env
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Dec 11, 2023
1 parent 0d847df commit 667b4ee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions run-tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ for (const name of [directory, "threads-profiling", "./results.json"]) {
}
}

const env = { ...process.env };
delete env.CI;
delete env.GITHUB_ACTIONS;

const pty = spawn(
"node",
[
Expand All @@ -28,6 +32,7 @@ const pty = spawn(
],
{
cwd: process.cwd(),
env,
encoding: "utf8",
cols: 80,
rows: 120,
Expand Down

0 comments on commit 667b4ee

Please sign in to comment.