Skip to content

Commit

Permalink
Fix allowed test failure on Windows (#1232)
Browse files Browse the repository at this point in the history
This disables RPC tests on Windows. They seem to hang instead of failing at the moment, so until we get them
working it seems like it's better to just leave them out.
  • Loading branch information
Aaron Tomb authored Jul 9, 2021
1 parent ddde44c commit 02aa441
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
matrix:
suite: [test-lib]
target: ${{ fromJson(needs.build.outputs.test-lib-json) }}
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest] # , windows-latest]
continue-on-error: [false]
include:
- suite: rpc
Expand All @@ -208,10 +208,10 @@ jobs:
target: ''
os: macos-latest
continue-on-error: false
- suite: rpc
target: ''
os: windows
continue-on-error: true # TODO: get Python client to work on Windows
#- suite: rpc
# target: ''
# os: windows-latest
# continue-on-error: true # TODO: get Python client to work on Windows
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 02aa441

Please sign in to comment.