Skip to content

Commit

Permalink
fix(ci): make it possible to run a custom test again (#6663)
Browse files Browse the repository at this point in the history
After this change `turbo test -F turborepo-test-integration --
tests/my-test.t` will work again.
  • Loading branch information
mehulkar authored Nov 30, 2023
1 parent 831b99b commit a9bc781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/prysk/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ execSync(`${getVenvBin("python3")} -m pip install --quiet --upgrade pip`);
execSync(`${getVenvBin("pip")} install "prysk==0.15.2"`);

// Which tests do we want to run?
const testArg = process.argv[2] ? process.argv[2] : "";
const testArg = process.argv[3] ? process.argv[3] : process.argv[2];
const tests = isWindows ? testArg.replaceAll("/", path.sep) : testArg;

if (!tests) {
Expand Down

0 comments on commit a9bc781

Please sign in to comment.