Skip to content

Commit 56807ba

Browse files
committed
revert build.yml
1 parent b77fbf7 commit 56807ba

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -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

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.Debug);
16+
builder.AddFilter("testcontainers", LogLevel.Information);
1717
builder.AddConsole();
1818
});
1919

0 commit comments

Comments
 (0)