We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd6842e6 commitaf473deCopy full SHA for af473de
ci/appveyor_run_tests.ps1
@@ -47,7 +47,7 @@ if ($CS_STATUS -ne 0) {
47
}else {
48
# NuGet for pythonnet-2.3 only has 64-bit binary for Python 3.5
49
# the test is only built using modern stack
50
-if (($env:PLATFORM-eq"x64")-and ($XPLAT)-and ($PYTHON_VERSION-eq"3.5")) {
+if (($env:PLATFORM-eq"x64")-and ($XPLAT)-and ($env:PYTHON_VERSION-eq"3.5")) {
51
# Run C# Performance tests
52
Write-Host ("Starting performance tests")-ForegroundColor"Green"
53
if ($XPLAT) {
@@ -62,6 +62,8 @@ if ($CS_STATUS -ne 0) {
62
Write-Host"Performance tests (C#) failed"-ForegroundColor"Red"
63
}
64
65
+Write-Host ("Skipping performance tests for",$env:PYTHON_VERSION)-ForegroundColor"Yellow"
66
+Write-Host ("on platform",$env:PLATFORM," xplat:"$XPLAT)-ForegroundColor"Yellow"
67
$CS_PERF_STATUS=0
68
69