We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 419bddf commit f36318fCopy full SHA for f36318f
ci/appveyor_run_tests.ps1
@@ -45,7 +45,12 @@ if ($CS_STATUS -ne 0) {
45
} else {
46
# Run C# Performance tests
47
Write-Host ("Starting performance tests") -ForegroundColor "Green"
48
- $CS_PERF_TESTS = ".\src\perf_tests\bin\net461\Python.PerformanceTests.dll"
+ if ($env:BUILD_OPTS -eq "--xplat") {
49
+ $CS_PERF_TESTS = ".\src\perf_tests\bin\net461\Python.PerformanceTests.dll"
50
+ }
51
+ else {
52
+ $CS_PERF_TESTS = ".\src\perf_tests\bin\Python.PerformanceTests.dll"
53
54
&"$CS_RUNNER" "$CS_PERF_TESTS"
55
$CS_PERF_STATUS = $LastExitCode
56
if ($CS_PERF_STATUS -ne 0) {
0 commit comments