Skip to content

Commit 39e9448

Browse files
author
Kartik Raj
authored
Skip flaky testing framework discovery against actual python process test (#11635)
* Skip failing CI test * Code reviews
1 parent d816dc5 commit 39e9448

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
@@ -221,7 +221,10 @@ suite('Unit Tests - unittest - discovery against actual python process', () => {
221221
);
222222
});
223223

224-
test('Re-run failed tests results in the correct number of tests counted', async () => {
224+
test('Re-run failed tests results in the correct number of tests counted', async function () {
225+
// https://github.com/microsoft/vscode-python/issues/11634
226+
// tslint:disable-next-line: no-invalid-this
227+
return this.skip();
225228
await updateSetting('testing.unittestArgs', ['-s=./tests', '-p=test_*.py'], rootWorkspaceUri!, configTarget);
226229
const factory = ioc.serviceContainer.get<ITestManagerFactory>(ITestManagerFactory);
227230
const testManager = factory('unittest', rootWorkspaceUri!, UNITTEST_COUNTS_TEST_FILE_PATH);

0 commit comments

Comments
 (0)