Marco Blessing
2422afbd8f
- fix pester test execution order in vscode test task. - fix coveralls.io link in bagde. - skip coverage report creation for PR triggered builds - update docs - Connection type SCP added for `Connect-To` and `Disconnect-From`. ## Internal Changes - pester tests now don't need to dotsource other public functions from the same module (fixes #17 ) - helper and private functions stilll needs to be dotsourced. - basic module tests added - pester tests for `Resolve-Dependency` added - Wrapper function `Get-ModuleBase` added. This enables mocking in tests.
57 lines
2.0 KiB
JSON
57 lines
2.0 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
// Start PowerShell
|
|
"windows": {
|
|
"command": "${env:windir}/System32/WindowsPowerShell/v1.0/powershell.exe",
|
|
"args": [
|
|
"-NoProfile",
|
|
"-ExecutionPolicy",
|
|
"Bypass"
|
|
]
|
|
},
|
|
"linux": {
|
|
"command": "/usr/bin/powershell",
|
|
"args": [
|
|
"-NoProfile"
|
|
]
|
|
},
|
|
"osx": {
|
|
"command": "/usr/local/bin/powershell",
|
|
"args": [
|
|
"-NoProfile"
|
|
]
|
|
},
|
|
"tasks": [
|
|
{
|
|
"taskName": "Test",
|
|
"suppressTaskName": true,
|
|
"args": [
|
|
"Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script ( Get-ChildItem -Path '.\\tests\\*.Tests.ps1' -Recurse | Sort-Object -Property Name ) -EnableExit $flase -PesterOption @{IncludeVSCodeMarker=$true};",
|
|
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }"
|
|
],
|
|
"problemMatcher": "$pester",
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"taskName": "DebugBuild",
|
|
"suppressTaskName": true,
|
|
"args": [
|
|
"Write-Host 'Invoking Build...';",
|
|
"Write-Host -Object 'Test previous builds.' -ForegroundColor Blue;",
|
|
"If (Test-Path -Path '.\\bin\\PSCredentialStore.zip') { Remove-Item -Path '.\\bin\\PSCredentialStore.zip' -Verbose};",
|
|
"Copy-Item -Path '.\\src\\' -Destination '.\\bin\\PSCredentialStore' -Recurse -Verbose -Force;",
|
|
"Compress-Archive -Path '.\\src\\*' -DestinationPath '.\\bin\\PSCredentialStore.zip' -Update -Verbose;"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|