From 22bed2eb96d450643c52a09a280305676d86b833 Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Thu, 16 Jan 2025 11:26:53 -0500 Subject: [PATCH] try explicit again --- packages/prysk/index.mjs | 1 + turborepo-tests/integration/package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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:*",