Skip to content

Commit abf31be

Browse files
committed
* Disable toxiproxy tests to see if this is why there are CI timeouts
1 parent 7e5c2c1 commit abf31be

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ jobs:
6969
- name: Integration Tests
7070
timeout-minutes: 25
7171
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; `
7676
dotnet test `
7777
--environment 'RABBITMQ_LONG_RUNNING_TESTS=true' `
7878
--environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" `
79-
--environment 'RABBITMQ_TOXIPROXY_TESTS=true' `
79+
--environment 'RABBITMQ_TOXIPROXY_TESTS=false' `
8080
--environment 'PASSWORD=grapefruit' `
8181
--environment SSL_CERTS_DIR="${{ github.workspace }}\.ci\certs" `
8282
"${{ github.workspace }}\projects\Test\Integration\Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
@@ -185,14 +185,14 @@ jobs:
185185
path: projects
186186
- name: Start RabbitMQ
187187
id: start-rabbitmq
188-
run: ${{ github.workspace }}/.ci/ubuntu/gha-setup.sh toxiproxy
188+
run: ${{ github.workspace }}/.ci/ubuntu/gha-setup.sh no-toxiproxy
189189
- name: Integration Tests
190190
timeout-minutes: 15
191191
run: |
192192
dotnet test \
193193
--environment 'RABBITMQ_LONG_RUNNING_TESTS=true' \
194194
--environment "RABBITMQ_RABBITMQCTL_PATH=DOCKER:${{ steps.start-rabbitmq.outputs.id }}" \
195-
--environment 'RABBITMQ_TOXIPROXY_TESTS=true' \
195+
--environment 'RABBITMQ_TOXIPROXY_TESTS=false' \
196196
--environment 'PASSWORD=grapefruit' \
197197
--environment SSL_CERTS_DIR="${{ github.workspace }}/.ci/certs" \
198198
"${{ github.workspace }}/projects/Test/Integration/Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'

0 commit comments

Comments
 (0)