This commit is contained in:
OCram85 2022-06-30 15:55:08 +02:00
parent d2582e7194
commit 4307159bed
1 changed files with 7 additions and 1 deletions

View File

@ -36,7 +36,7 @@ steps:
pwsh -NonInteractive -c "& {
Import-Module './tools/DroneIO.psm1';
Invoke-InstallDependencies;
Invoke-UnitTest -Verbosity 'Detailed' -ErrorAction 'Stop'
Invoke-UnitTest -Verbosity 'Normal' -ErrorAction 'Stop'
}"
- name: coverage
@ -46,6 +46,8 @@ steps:
from_secret: CodeCovToken
files:
- coverage.xml
depends_on:
- UnitTests
- name: SetPipelineState
image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal
@ -55,3 +57,7 @@ steps:
Import-Module './tools/DroneIO.psm1';
Invoke-BuildState -ErrorAction 'Stop'
}"
depends_on:
- LintTests
- UnitTests
- Coverage