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

Skip to content

Commit bd2d3ef

Browse files
committed
fixed AppVeyor path to Python.PerformanceTests.dll
1 parent ac1a6b9 commit bd2d3ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/appveyor_run_tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if ($CS_STATUS -ne 0) {
4545
} else {
4646
# Run C# Performance tests
4747
Write-Host ("Starting performance tests") -ForegroundColor "Green"
48-
$CS_PERF_TESTS = ".\src\perf_tests\bin\Python.PerformanceTests.dll"
48+
$CS_PERF_TESTS = ".\src\perf_tests\bin\net461\Python.PerformanceTests.dll"
4949
&"$CS_RUNNER" "$CS_PERF_TESTS"
5050
$CS_PERF_STATUS = $LastExitCode
5151
if ($CS_PERF_STATUS -ne 0) {
@@ -63,7 +63,7 @@ if ($env:BUILD_OPTS -eq "--xplat"){
6363

6464
# Run Embedded tests for netcoreapp2.0 (OpenCover currently does not supports dotnet core)
6565
Write-Host ("Starting embedded tests for netcoreapp2.0") -ForegroundColor "Green"
66-
&$DOTNET_CMD .\src\embed_tests\bin\netcoreapp2.0_publish\Python.EmbeddingTest.dll
66+
&$DOTNET_CMD ".\src\embed_tests\bin\netcoreapp2.0_publish\Python.EmbeddingTest.dll"
6767
$CS_STATUS = $LastExitCode
6868
if ($CS_STATUS -ne 0) {
6969
Write-Host "Embedded tests for netcoreapp2.0 failed" -ForegroundColor "Red"

0 commit comments

Comments
 (0)