We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--no-cov
1 parent d23afe8 commit a009edbCopy full SHA for a009edb
src/client/testing/testController/pytest/runner.ts
@@ -95,6 +95,10 @@ export class PytestRunner implements ITestsRunner {
95
testArgs.push('--capture', 'no');
96
}
97
98
+ if (options.debug && !testArgs.some((a) => a.startsWith('--no-cov'))) {
99
+ testArgs.push('--no-cov');
100
+ }
101
+
102
// Positional arguments control the tests to be run.
103
const rawData = idToRawData.get(testNode.id);
104
if (!rawData) {
0 commit comments