From b9914c4175e6eda1e389c947f51fd2e417854766 Mon Sep 17 00:00:00 2001 From: skwas Date: Thu, 25 Jul 2019 01:04:16 +0200 Subject: [PATCH] fix: test-results.xml files not found due to invalid arg --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index c14f0faf..8c3aa08e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,7 +31,7 @@ test_script: - OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test -c Debug -l:trx;LogFileName=test-results.xml" -output:coverage.xml -register:user -filter:"+[IbanNet*]* -[*Tests]*" -oldStyle - codecov -f coverage.xml on_finish: - - sh: find "$APPVEYOR_BUILD_FOLDER" -type f -name '*/test-results.xml' -print0 | xargs -0 -I '{}' curl -F 'file=@{}' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID" + - sh: find "$APPVEYOR_BUILD_FOLDER" -type f -name 'test-results.xml' -print0 | xargs -0 -I '{}' curl -F 'file=@{}' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID" deploy: - provider: NuGet api_key: