Skip to content

Commit f1fd82c

Browse files
committed
* Re-enable a test
* Disable `--diag`
1 parent 0f77218 commit f1fd82c

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
@@ -69,18 +70,19 @@ jobs:
6970
run: ${{ github.workspace }}/.ci/ubuntu/cluster/gha-setup.sh
7071
- name: Test
7172
timeout-minutes: 25
72-
run: dotnet test ${{ github.workspace }}/Build.csproj --diag ${{ github.workspace}}/diag --no-restore --no-build --logger "console;verbosity=detailed"
73+
# --diag ${{ github.workspace}}/diag
74+
run: dotnet test ${{ github.workspace }}/Build.csproj --no-restore --no-build --logger "console;verbosity=detailed"
7375
- name: Check for errors in RabbitMQ logs
7476
run: ${{ github.workspace}}/.ci/ubuntu/cluster/gha-logs.sh check
7577
- name: Collect RabbitMQ logs (on failure)
7678
if: failure()
7779
run: ${{ github.workspace}}/.ci/ubuntu/cluster/gha-logs.sh
78-
- name: Upload dotnet test diag logs (on failure)
79-
if: failure()
80-
uses: actions/upload-artifact@v4
81-
with:
82-
name: dotnet-test-diag-ubuntu
83-
path: ${{ github.workspace }}/diag/
80+
# - name: Upload dotnet test diag logs (on failure)
81+
# if: failure()
82+
# uses: actions/upload-artifact@v4
83+
# with:
84+
# name: dotnet-test-diag-ubuntu
85+
# path: ${{ github.workspace }}/diag/
8486
- name: Upload RabbitMQ logs (on failure)
8587
if: failure()
8688
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)