Skip to content

Commit

Permalink
Added continue on error to ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Apr 26, 2023
1 parent bfeb004 commit 1639ad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
experimental: true

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion tests/test_imshowtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_bitmap_to_photo():
except RuntimeError:
#we're getting runtime errors on some macos CI.
#https://github.com/actions/setup-python/issues/649
#assert False
assert False
return
image = cv2.imread('project-icon.png')
print (image.shape)
Expand Down

0 comments on commit 1639ad2

Please sign in to comment.