Skip to content

Commit 4b378dd

Browse files
committed
* Re-enable a test
* Disable `--diag`
1 parent 71e6562 commit 4b378dd

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

.github/workflows/wf_build-and-test.yaml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,16 @@ jobs:
3535
run: ${{ github.workspace }}\.ci\windows\gha-setup.ps1
3636
- name: Test
3737
timeout-minutes: 25
38-
run: dotnet test ${{ github.workspace }}\Build.csproj --diag ${{ github.workspace}}\diag --no-restore --no-build --logger 'console;verbosity=detailed'
38+
# --diag ${{ github.workspace}}\diag
39+
run: dotnet test ${{ github.workspace }}\Build.csproj --no-restore --no-build --logger 'console;verbosity=detailed'
3940
- name: Check for errors in RabbitMQ logs
4041
run: ${{ github.workspace }}\.ci\windows\gha-log-check.ps1
41-
- name: Upload dotnet test diag logs (on failure)
42-
if: failure()
43-
uses: actions/upload-artifact@v4
44-
with:
45-
name: dotnet-test-diag-win32
46-
path: ${{ github.workspace }}/diag/
42+
# - name: Upload dotnet test diag logs (on failure)
43+
# if: failure()
44+
# uses: actions/upload-artifact@v4
45+
# with:
46+
# name: dotnet-test-diag-win32
47+
# path: ${{ github.workspace }}/diag/
4748
- name: Maybe upload RabbitMQ logs
4849
if: failure()
4950
uses: actions/upload-artifact@v4
@@ -63,18 +64,19 @@ jobs:
6364
run: ${{ github.workspace }}/.ci/ubuntu/cluster/gha-setup.sh
6465
- name: Test
6566
timeout-minutes: 25
66-
run: dotnet test ${{ github.workspace }}/Build.csproj --diag ${{ github.workspace}}/diag --no-restore --no-build --logger "console;verbosity=detailed"
67+
# --diag ${{ github.workspace}}/diag
68+
run: dotnet test ${{ github.workspace }}/Build.csproj --no-restore --no-build --logger "console;verbosity=detailed"
6769
- name: Check for errors in RabbitMQ logs
6870
run: ${{ github.workspace}}/.ci/ubuntu/cluster/gha-logs.sh check
6971
- name: Collect RabbitMQ logs (on failure)
7072
if: failure()
7173
run: ${{ github.workspace}}/.ci/ubuntu/cluster/gha-logs.sh
72-
- name: Upload dotnet test diag logs (on failure)
73-
if: failure()
74-
uses: actions/upload-artifact@v4
75-
with:
76-
name: dotnet-test-diag-ubuntu
77-
path: ${{ github.workspace }}/diag/
74+
# - name: Upload dotnet test diag logs (on failure)
75+
# if: failure()
76+
# uses: actions/upload-artifact@v4
77+
# with:
78+
# name: dotnet-test-diag-ubuntu
79+
# path: ${{ github.workspace }}/diag/
7880
- name: Upload RabbitMQ logs (on failure)
7981
if: failure()
8082
uses: actions/upload-artifact@v4

Tests/ConnectionRecoveryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public async Task UnexpectedCloseTheStatusShouldBeCorrectAndErrorNotNull()
108108
{
109109
Assert.Null(_connection);
110110
Assert.Null(_management);
111-
Skip.If(true, "rabbitmq-dotnet-client-87");
111+
// Skip.If(true, "rabbitmq-dotnet-client-87");
112112

113113
IConnection connection = await AmqpConnection.CreateAsync(
114114
ConnectionSettingBuilder.Create().ContainerId(_containerId).RecoveryConfiguration(

0 commit comments

Comments
 (0)