Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/3 Code Health/6322.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Retry failing debugger test (retry due to intermittent issues on `Azure Pipelines`).
4 changes: 3 additions & 1 deletion src/test/debugger/attach.ptvsd.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,5 +139,7 @@ suite('Debugging - Attach Debugger', () => {
}
test('Confirm we are able to attach to a running program', async () => {
await testAttachingToRemoteProcess(path.dirname(fileToDebug), path.dirname(fileToDebug), IS_WINDOWS);
});
})
// Retry as tests can timeout on server due to connectivity issues.
.retries(3);
});