From 14e8995d7546cb9b67952c43d9f9ee15a308970b Mon Sep 17 00:00:00 2001 From: "phnx47[bot]" <78849906+phnx47-bot@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:29:01 +0000 Subject: [PATCH] remove test filter --- .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