File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ if ($CS_STATUS -ne 0) {
47
47
} else {
48
48
# NuGet for pythonnet-2.3 only has 64-bit binary for Python 3.5
49
49
# 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" )) {
51
51
# Run C# Performance tests
52
52
Write-Host (" Starting performance tests" ) - ForegroundColor " Green"
53
53
if ($XPLAT ) {
@@ -62,6 +62,8 @@ if ($CS_STATUS -ne 0) {
62
62
Write-Host " Performance tests (C#) failed" - ForegroundColor " Red"
63
63
}
64
64
} else {
65
+ Write-Host (" Skipping performance tests for " , $env: PYTHON_VERSION ) - ForegroundColor " Yellow"
66
+ Write-Host (" on platform " , $env: PLATFORM , " xplat: " $XPLAT ) - ForegroundColor " Yellow"
65
67
$CS_PERF_STATUS = 0
66
68
}
67
69
}
You can’t perform that action at this time.
0 commit comments