ci: temporarily comment the server tests for autobahn (#8272)

pull/8281/head
Tomas Hellström 2021-01-22 21:30:53 +01:00 committed by GitHub
parent 981b42125f
commit 970c03987d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 16 deletions

View File

@ -781,8 +781,8 @@ jobs:
run: docker exec autobahn_client "/src/v" "/src/vlib/x/websocket/tests/autobahn/autobahn_client_wss.v" run: docker exec autobahn_client "/src/v" "/src/vlib/x/websocket/tests/autobahn/autobahn_client_wss.v"
- name: Run client wss test - name: Run client wss test
run: docker exec autobahn_client "/src/vlib/x/websocket/tests/autobahn/autobahn_client_wss" run: docker exec autobahn_client "/src/vlib/x/websocket/tests/autobahn/autobahn_client_wss"
- name: Run server test # - name: Run server test
run: docker exec autobahn_server "wstest" "-m" "fuzzingclient" "-s" "/config/fuzzingclient.json" # run: docker exec autobahn_server "wstest" "-m" "fuzzingclient" "-s" "/config/fuzzingclient.json"
- name: Copy reports - name: Copy reports
run: docker cp autobahn_server:/reports ${{github.workspace}}/reports run: docker cp autobahn_server:/reports ${{github.workspace}}/reports
- name: Copy reports wss - name: Copy reports wss
@ -802,11 +802,11 @@ jobs:
with: with:
name: client name: client
path: ${{github.workspace}}/reports/clients/index.html path: ${{github.workspace}}/reports/clients/index.html
- name: Publish report server # - name: Publish report server
uses: actions/upload-artifact@v2 # uses: actions/upload-artifact@v2
with: # with:
name: server # name: server
path: ${{github.workspace}}/reports/servers/index.html # path: ${{github.workspace}}/reports/servers/index.html
- name: Publish all reports WSS - name: Publish all reports WSS
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:

View File

@ -19,17 +19,17 @@ with open("/reports/clients/index.json") as f:
nr_of_client_tests = nr_of_client_tests + 1 nr_of_client_tests = nr_of_client_tests + 1
with open("/reports/servers/index.json") as f: # with open("/reports/servers/index.json") as f:
data = json.load(f) # data = json.load(f)
for i in data["AutobahnServer"]: # for i in data["AutobahnServer"]:
if ( # if (
data["AutobahnServer"][i]["behavior"] == "FAILED" # data["AutobahnServer"][i]["behavior"] == "FAILED"
or data["AutobahnServer"][i]["behaviorClose"] == "FAILED" # or data["AutobahnServer"][i]["behaviorClose"] == "FAILED"
): # ):
nr_of_server_errs = nr_of_server_errs + 1 # nr_of_server_errs = nr_of_server_errs + 1
nr_of_server_tests = nr_of_server_tests + 1 # nr_of_server_tests = nr_of_server_tests + 1
if nr_of_client_errs > 0 or nr_of_server_errs > 0: if nr_of_client_errs > 0 or nr_of_server_errs > 0:
print( print(