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

Skip to content

Commit d6842e6

Browse files
committed
fixed performance test Python version condition in AppVeyor
1 parent 93bf2b7 commit d6842e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/appveyor_run_tests.ps1

Lines changed: 1 addition & 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 = "3.5")) {
50+
if (($env:PLATFORM -eq "x64") -and ($XPLAT) -and ($PYTHON_VERSION -eq "3.5")) {
5151
# Run C# Performance tests
5252
Write-Host ("Starting performance tests") -ForegroundColor "Green"
5353
if ($XPLAT) {

0 commit comments

Comments
 (0)