diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 310d599a..0b5d6027 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -59,7 +59,7 @@ jobs: run: dotnet build --no-restore /p:ContinuousIntegrationBuild=true - name: Test - run: dotnet test -f net8.0 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj + run: dotnet test -f net8.0 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj --logger GitHubActions dotnet_6_cluster: name: .NET 6 on [redis-stack cluster] @@ -175,4 +175,4 @@ jobs: shell: cmd run: | START wsl ./redis-stack-server-${{env.redis_stack_version}}/bin/redis-stack-server & - dotnet test -f net481 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj \ No newline at end of file + dotnet test -f net481 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj --logger GitHubActions diff --git a/.github/workflows/reusable.yml b/.github/workflows/reusable.yml index 98e06f04..755153b1 100644 --- a/.github/workflows/reusable.yml +++ b/.github/workflows/reusable.yml @@ -70,7 +70,7 @@ jobs: echo "${{secrets.REDIS_CA_PEM}}" > tests/NRedisStack.Tests/bin/Debug/${{inputs.clr_version}}/redis_ca.pem echo "${{secrets.REDIS_USER_CRT}}" > tests/NRedisStack.Tests/bin/Debug/${{inputs.clr_version}}/redis_user.crt echo "${{secrets.REDIS_USER_PRIVATE_KEY}}" > tests/NRedisStack.Tests/bin/Debug/${{inputs.clr_version}}/redis_user_private.key - dotnet test -f ${{inputs.clr_version}} --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover -p:BuildInParallel=false tests/Test.proj + dotnet test -f ${{inputs.clr_version}} --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover -p:BuildInParallel=false tests/Test.proj --logger GitHubActions - name: Codecov uses: codecov/codecov-action@v3 with: @@ -90,5 +90,5 @@ jobs: dotnet nuget remove source nuget.org dotnet nuget list source find . -name '*.csproj' | xargs -I {} sed -E -i 's|.*|${{inputs.clr_version}}|' {} - dotnet restore -s test-source + dotnet restore -s test-source -v detailed dotnet run diff --git a/tests/Doc/Doc.csproj b/tests/Doc/Doc.csproj index 2577990c..dec76f61 100644 --- a/tests/Doc/Doc.csproj +++ b/tests/Doc/Doc.csproj @@ -10,6 +10,10 @@ + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + diff --git a/tests/NRedisStack.Tests/NRedisStack.Tests.csproj b/tests/NRedisStack.Tests/NRedisStack.Tests.csproj index 8cb0bc40..daba5299 100644 --- a/tests/NRedisStack.Tests/NRedisStack.Tests.csproj +++ b/tests/NRedisStack.Tests/NRedisStack.Tests.csproj @@ -20,6 +20,10 @@ all + + runtime; build; native; contentfiles; analyzers; buildtransitive + all +