diff --git a/packages/prysk/index.mjs b/packages/prysk/index.mjs index a89f325483b80..fb2061abcf607 100755 --- a/packages/prysk/index.mjs +++ b/packages/prysk/index.mjs @@ -31,6 +31,7 @@ const flags = [ process.env.PRYSK_INTERACTIVE === "true" ? "--interactive" : "", isWindows ? "--prysk-dos2unix=true" : "", "--capture=fd", + "tests", ].join(" "); const cmd = [getVenvBin("pytest"), flags].join(" "); diff --git a/turborepo-tests/integration/package.json b/turborepo-tests/integration/package.json index 8429f942c8ca8..ee781172b5991 100644 --- a/turborepo-tests/integration/package.json +++ b/turborepo-tests/integration/package.json @@ -4,7 +4,7 @@ "test": "prysk tests", "clean": "rm -rf tests/**/*.t.err", "test:interactive": "PRYSK_INTERACTIVE=true prysk tests", - "test:parallel": "prysk tests" + "test:parallel": "prysk" }, "dependencies": { "turborepo-tests-helpers": "workspace:*",