Skip to content

Commit

Permalink
test: skip test_save_readonly_as on osx, which hangs/fails randomly o…
Browse files Browse the repository at this point in the history
…n press('Escape')
  • Loading branch information
maartenbreddels committed Apr 25, 2024
1 parent db3c0c3 commit a145db3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nbclassic/tests/end_to_end/test_save_readonly_as.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ def set_notebook_name(nb, name):

# on Python 3.7 we get an old playwright which hangs on body.press("Escape")
@pytest.mark.skipif(sys.version_info < (3, 8), reason="requires python3.8 or higher due to playwright")
# and we also see this fail on osx randomly
@pytest.mark.skipif(sys.platform == 'darwin', reason="fails randomly on osx")
def test_save_readonly_as(notebook_frontend):
print('[Test] [test_save_readonly_as]')
notebook_frontend.wait_for_kernel_ready()
Expand Down

0 comments on commit a145db3

Please sign in to comment.