@@ -28,29 +28,28 @@ jobs:
2828 - name : Build IntegrationTests .NET Framework
2929 run : dotnet build -f net48 test/Renci.SshNet.IntegrationTests/
3030
31- # - name: Run Unit Tests .NET
32- # run: |
33- # dotnet test \
34- # -f net9.0 \
35- # --no-build \
36- # --logger "console;verbosity=normal" \
37- # --logger GitHubActions \
38- # -p:CollectCoverage=true \
39- # -p:CoverletOutputFormat=cobertura \
40- # -p:CoverletOutput=../../coverlet/linux_unit_test_net_9_coverage.xml \
41- # test/Renci.SshNet.Tests/
31+ - name : Run Unit Tests .NET
32+ run : |
33+ dotnet test \
34+ -f net9.0 \
35+ --no-build \
36+ --logger "console;verbosity=normal" \
37+ --logger GitHubActions \
38+ -p:CollectCoverage=true \
39+ -p:CoverletOutputFormat=cobertura \
40+ -p:CoverletOutput=../../coverlet/linux_unit_test_net_9_coverage.xml \
41+ test/Renci.SshNet.Tests/
4242
4343 - name : Run Integration Tests .NET
4444 run : |
4545 dotnet test \
4646 -f net9.0 \
4747 --no-build \
48- --logger "console;verbosity=detailed " \
48+ --logger "console;verbosity=normal " \
4949 --logger GitHubActions \
5050 -p:CollectCoverage=true \
5151 -p:CoverletOutputFormat=cobertura \
5252 -p:CoverletOutput=../../coverlet/linux_integration_test_net_9_coverage.xml \
53- --filter "Name~Common_DisposeAfterLossOfNetworkConnectivity" \
5453 test/Renci.SshNet.IntegrationTests/
5554
5655 # Also run a subset of the integration tests targeting netfx using mono. This is a temporary measure to get
0 commit comments