From 4e66eaef34336a9d93eb55978c9a239b3086f122 Mon Sep 17 00:00:00 2001 From: phnx47-bot <78849906+phnx47-bot@users.noreply.github.com> Date: Tue, 10 Dec 2024 21:33:25 +0700 Subject: [PATCH] remove test filter (#121) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85ead12..5e9d940 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Run tests - run: dotnet test -c Release --filter FullyQualifiedName\!~Tests.Integration -p:CollectCoverage=false + run: dotnet test -c Release -p:CollectCoverage=false build-linux: name: Build, Test & Pack (Linux) @@ -42,7 +42,7 @@ jobs: run: dotnet build -c Release -p:ContinuousIntegrationBuild=true - name: Run tests - run: dotnet test --no-build -c Release --filter FullyQualifiedName\!~Tests.Integration -p:CollectCoverage=true -e:CoverletOutputFormat=opencover + run: dotnet test --no-build -c Release -p:CollectCoverage=true -e:CoverletOutputFormat=opencover - name: Publish to Codecov uses: codecov/codecov-action@v5