-
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated pipeline with status from ConfluencePS
- Loading branch information
Showing
10 changed files
with
143 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,34 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"configurations": [{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File", | ||
"script": "${file}", | ||
"name": "PowerShell Pester Tests", | ||
"script": ".\\.env.ps1", | ||
"script": "Invoke-Pester", | ||
"args": [], | ||
"cwd": "${file}" | ||
"cwd": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File in Temporary Console", | ||
"name": "PowerShell Launch (current file)", | ||
"script": "${file}", | ||
"args": [], | ||
"cwd": "${file}", | ||
"createTemporaryIntegratedConsole": true | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File w/Args Prompt", | ||
"script": "${file}", | ||
"args": [ | ||
"${command:SpecifyScriptArgs}" | ||
], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Interactive Session", | ||
"cwd": "${workspaceRoot}" | ||
"request": "attach", | ||
"name": "PowerShell Attach to Host Process", | ||
"processId": "${command.PickPSHostProcess}", | ||
"runspaceId": 1 | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Pester Tests", | ||
"script": "Invoke-Pester", | ||
"args": [], | ||
"name": "PowerShell Interactive Session", | ||
"cwd": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "attach", | ||
"name": "PowerShell Attach to Host Process", | ||
"processId": "${command:PickPSHostProcess}", | ||
"runspaceId": 1 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.