From 14e042c38482ac5c61a0a5bd9a77ff32cfad82db Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Wed, 20 Dec 2023 10:30:26 -0800 Subject: [PATCH] Fix CI test filtering Signed-off-by: Victor Chang --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index defc1dd..b9ce1d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -171,7 +171,7 @@ jobs: working-directory: ./src/Plugins/MinIO/Tests - name: Test - run: find ~+ -type f -name "*.Test.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings + run: find ~+ -type f -name "*.Tests.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings working-directory: ./src - name: End SonarScanner