File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 45
45
with :
46
46
name : missing-test-report.csv
47
47
path : MissingTestReport*
48
+ if-no-files-found : error
48
49
49
50
- uses : actions/upload-artifact@v3
50
51
with :
51
52
name : test-report.csv
52
53
path : TestReport*
54
+ if-no-files-found : error
53
55
Original file line number Diff line number Diff line change @@ -71,18 +71,21 @@ foreach($q in $queriesToCheck){
71
71
$row [" TEST_DIR_EXISTS" ] = $true
72
72
73
73
if ((Test-Path (Join-Path $testDirectory " test.$Language " ))){
74
- Write-Host " Source Code Does not exist $ ( (Join-Path $testDirectory " test.$Language " )) "
75
74
$row [" SOURCE_CODE_EXISTS" ] = $true
75
+ }else {
76
+ Write-Host " -SOURCE $ ( (Join-Path $testDirectory " test.$Language " )) missing"
76
77
}
77
78
78
79
if ((Test-Path (Join-Path $testDirectory " $dirNameLower .expected" ))){
79
- Write-Host " expected $ ( (Join-Path $testDirectory " $dirNameLower .expected" )) "
80
80
$row [" EXPECTED_EXISTS" ] = $true
81
+ }else {
82
+ Write-Host " -EXPECTED $ ( (Join-Path $testDirectory " $dirNameLower .expected" )) missing"
81
83
}
82
84
83
85
if ((Test-Path (Join-Path $testDirectory " $dirNameLower .ql" ))){
84
- Write-Host " ql $ ( (Join-Path $testDirectory " $dirNameLower .ql" )) "
85
86
$row [" REFERENCE_EXISTS" ] = $true
87
+ }else {
88
+ Write-Host " -QL $ ( (Join-Path $testDirectory " $dirNameLower .ql" )) missing"
86
89
}
87
90
88
91
You can’t perform that action at this time.
0 commit comments