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 parentac1a6b9 commitbd2d3efCopy full SHA for bd2d3ef
ci/appveyor_run_tests.ps1
@@ -45,7 +45,7 @@ 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\Python.PerformanceTests.dll"
+$CS_PERF_TESTS=".\src\perf_tests\bin\net461\Python.PerformanceTests.dll"
49
&"$CS_RUNNER""$CS_PERF_TESTS"
50
$CS_PERF_STATUS=$LastExitCode
51
if ($CS_PERF_STATUS-ne0) {
@@ -63,7 +63,7 @@ if ($env:BUILD_OPTS -eq "--xplat"){
63
64
# Run Embedded tests for netcoreapp2.0 (OpenCover currently does not supports dotnet core)
65
Write-Host ("Starting embedded tests for netcoreapp2.0")-ForegroundColor"Green"
66
-&$DOTNET_CMD .\src\embed_tests\bin\netcoreapp2.0_publish\Python.EmbeddingTest.dll
+&$DOTNET_CMD".\src\embed_tests\bin\netcoreapp2.0_publish\Python.EmbeddingTest.dll"
67
$CS_STATUS=$LastExitCode
68
if ($CS_STATUS-ne0) {
69
Write-Host"Embedded tests for netcoreapp2.0 failed"-ForegroundColor"Red"