@@ -69,14 +69,14 @@ jobs:
69
69
- name : Integration Tests
70
70
timeout-minutes : 25
71
71
run : |
72
- # $tx = Start-Job -Verbose -ScriptBlock { & "${{ github.workspace }}\.ci\windows\toxiproxy\toxiproxy-server.exe" }; `
73
- # Start-Sleep -Seconds 1; `
74
- # Receive-Job -Job $tx; `
75
- # & "${{ github.workspace }}\.ci\windows\toxiproxy\toxiproxy-cli.exe" list; `
72
+ $tx = Start-Job -Verbose -ScriptBlock { & "${{ github.workspace }}\.ci\windows\toxiproxy\toxiproxy-server.exe" }; `
73
+ Start-Sleep -Seconds 1; `
74
+ Receive-Job -Job $tx; `
75
+ & "${{ github.workspace }}\.ci\windows\toxiproxy\toxiproxy-cli.exe" list; `
76
76
dotnet test `
77
77
--environment 'RABBITMQ_LONG_RUNNING_TESTS=true' `
78
78
--environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" `
79
- --environment 'RABBITMQ_TOXIPROXY_TESTS=false ' `
79
+ --environment 'RABBITMQ_TOXIPROXY_TESTS=true ' `
80
80
--environment 'PASSWORD=grapefruit' `
81
81
--environment SSL_CERTS_DIR="${{ github.workspace }}\.ci\certs" `
82
82
"${{ github.workspace }}\projects\Test\Integration\Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
@@ -185,14 +185,14 @@ jobs:
185
185
path : projects
186
186
- name : Start RabbitMQ
187
187
id : start-rabbitmq
188
- run : ${{ github.workspace }}/.ci/ubuntu/gha-setup.sh no- toxiproxy
188
+ run : ${{ github.workspace }}/.ci/ubuntu/gha-setup.sh toxiproxy
189
189
- name : Integration Tests
190
190
timeout-minutes : 15
191
191
run : |
192
192
dotnet test \
193
193
--environment 'RABBITMQ_LONG_RUNNING_TESTS=true' \
194
194
--environment "RABBITMQ_RABBITMQCTL_PATH=DOCKER:${{ steps.start-rabbitmq.outputs.id }}" \
195
- --environment 'RABBITMQ_TOXIPROXY_TESTS=false ' \
195
+ --environment 'RABBITMQ_TOXIPROXY_TESTS=true ' \
196
196
--environment 'PASSWORD=grapefruit' \
197
197
--environment SSL_CERTS_DIR="${{ github.workspace }}/.ci/certs" \
198
198
"${{ github.workspace }}/projects/Test/Integration/Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
0 commit comments