Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0eec424

Browse files
committed
explicitly notify when performance tests are skipped in AppVeyor
1 parent d6842e6 commit 0eec424

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/appveyor_run_tests.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if ($CS_STATUS -ne 0) {
4747
} else {
4848
# NuGet for pythonnet-2.3 only has 64-bit binary for Python 3.5
4949
# the test is only built using modern stack
50-
if (($env:PLATFORM -eq "x64") -and ($XPLAT) -and ($PYTHON_VERSION -eq "3.5")) {
50+
if (($env:PLATFORM -eq "x64") -and ($XPLAT) -and ($env:PYTHON_VERSION -eq "3.5")) {
5151
# Run C# Performance tests
5252
Write-Host ("Starting performance tests") -ForegroundColor "Green"
5353
if ($XPLAT) {
@@ -62,6 +62,8 @@ if ($CS_STATUS -ne 0) {
6262
Write-Host "Performance tests (C#) failed" -ForegroundColor "Red"
6363
}
6464
} else {
65+
Write-Host ("Skipping performance tests for ", $env:PYTHON_VERSION) -ForegroundColor "Yellow"
66+
Write-Host ("on platform ", $env:PLATFORM, " xplat: ", $XPLAT) -ForegroundColor "Yellow"
6567
$CS_PERF_STATUS = 0
6668
}
6769
}

0 commit comments

Comments
 (0)