File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
projects/Test/Integration Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 68
68
id : install-start-rabbitmq
69
69
run : .\.ci\windows\gha-setup.ps1
70
70
- name : Async Integration Tests
71
- run : dotnet test --environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" --environment 'RABBITMQ_LONG_RUNNING_TESTS=false ' "${{ github.workspace }}\projects\Test\AsyncIntegration\AsyncIntegration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
71
+ run : dotnet test --environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" --environment 'RABBITMQ_LONG_RUNNING_TESTS=true ' "${{ github.workspace }}\projects\Test\AsyncIntegration\AsyncIntegration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
72
72
- name : Integration Tests
73
- run : dotnet test --environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" --environment 'RABBITMQ_LONG_RUNNING_TESTS=false ' --environment 'PASSWORD=grapefruit' --environment SSL_CERTS_DIR="${{ github.workspace }}\.ci\certs" "${{ github.workspace }}\projects\Test\Integration\Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
73
+ run : dotnet test --environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" --environment 'RABBITMQ_LONG_RUNNING_TESTS=true ' --environment 'PASSWORD=grapefruit' --environment SSL_CERTS_DIR="${{ github.workspace }}\.ci\certs" "${{ github.workspace }}\projects\Test\Integration\Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
74
74
- name : Maybe upload RabbitMQ logs
75
75
if : failure()
76
76
uses : actions/upload-artifact@v3
@@ -179,7 +179,7 @@ jobs:
179
179
run : |
180
180
dotnet test \
181
181
--environment "RABBITMQ_RABBITMQCTL_PATH=DOCKER:${{ steps.start-rabbitmq.outputs.id }}" \
182
- --environment 'RABBITMQ_LONG_RUNNING_TESTS=false ' \
182
+ --environment 'RABBITMQ_LONG_RUNNING_TESTS=true ' \
183
183
--environment 'PASSWORD=grapefruit' \
184
184
--environment SSL_CERTS_DIR="${{ github.workspace }}/.ci/certs" \
185
185
"${{ github.workspace }}/projects/Test/Integration/Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ public void TestHundredsOfConnectionsWithRandomHeartbeatInterval()
114
114
cf . RequestedHeartbeat = TimeSpan . FromSeconds ( n ) ;
115
115
cf . AutomaticRecoveryEnabled = false ;
116
116
117
- IConnection conn = cf . CreateConnection ( $ "_testDisplayName:{ i } ") ;
117
+ IConnection conn = cf . CreateConnection ( $ "{ _testDisplayName } :{ i } ") ;
118
118
conns . Add ( conn ) ;
119
119
IChannel ch = conn . CreateChannel ( ) ;
120
120
conn . ConnectionShutdown += ( sender , evt ) =>
You can’t perform that action at this time.
0 commit comments