Migrates to Pester5+ tests #59

Merged
OCram85 merged 47 commits from Pester5 into master 2022-07-14 13:37:13 +02:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit be156ab716 - Show all commits

View File

@ -74,7 +74,7 @@ steps:
- name: LintTests - name: LintTests
image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal
failure: ignore #failure: ignore
commands: commands:
- | - |
pwsh -NonInteractive -c "& { pwsh -NonInteractive -c "& {
@ -85,7 +85,7 @@ steps:
- name: UnitTests - name: UnitTests
image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal
failure: ignore #failure: ignore
commands: commands:
- | - |
pwsh -NonInteractive -c "& { pwsh -NonInteractive -c "& {
@ -102,3 +102,6 @@ steps:
Import-Module './tools/DroneIO.psm1'; Import-Module './tools/DroneIO.psm1';
Invoke-ShowEnv -Verbose Invoke-ShowEnv -Verbose
}" }"
depends_on:
- LintTests
- UnitTests