Skip to content

Commit bd12464

Browse files
author
Kartik Raj
authored
Skip flaky testing framework discovery against actual python process test (#11696)
1 parent 7984076 commit bd12464

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/testing/unittest/unittest.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,10 @@ suite('Unit Tests - unittest - discovery against actual python process', () => {
177177
);
178178
});
179179

180-
test('Ensure correct test count for running a set of tests multiple times', async () => {
180+
test('Ensure correct test count for running a set of tests multiple times', async function () {
181+
// https://github.com/microsoft/vscode-python/issues/11634
182+
// tslint:disable-next-line: no-invalid-this
183+
return this.skip();
181184
await updateSetting('testing.unittestArgs', ['-s=./tests', '-p=test_*.py'], rootWorkspaceUri!, configTarget);
182185
const factory = ioc.serviceContainer.get<ITestManagerFactory>(ITestManagerFactory);
183186
const testManager = factory('unittest', rootWorkspaceUri!, UNITTEST_COUNTS_TEST_FILE_PATH);

0 commit comments

Comments
 (0)