Skip to content

Commit 2e4aa96

Browse files
committed
test
1 parent ee054f4 commit 2e4aa96

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,29 @@ 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=normal" \
48+
--logger "console;verbosity=detailed" \
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" \
5354
test/Renci.SshNet.IntegrationTests/
5455
5556
# Also run a subset of the integration tests targeting netfx using mono. This is a temporary measure to get

test/Renci.SshNet.IntegrationTests/TestsFixtures/InfrastructureFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ private InfrastructureFixture()
1313
_loggerFactory = LoggerFactory.Create(builder =>
1414
{
1515
builder.SetMinimumLevel(LogLevel.Debug);
16-
builder.AddFilter("testcontainers", LogLevel.Information);
16+
builder.AddFilter("testcontainers", LogLevel.Debug);
1717
builder.AddConsole();
1818
});
1919

0 commit comments

Comments
 (0)