Skip to content

Commit

Permalink
ci: Skip flaky test on macOS PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 27, 2023
1 parent 7f10b05 commit 051febf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commands/test_mapping_sheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_command_extension_and_extension_field_and_no_inherit_extension(capsys,


@pytest.mark.skipif(
platform.system() == 'Linux' and platform.python_implementation() == 'PyPy',
platform.system() in ('Darwin', 'Linux') and platform.python_implementation() == 'PyPy',
reason='CI outputs /opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/site-packages/certifi/cacert.pem None'
)
def test_command_extension_and_extension_field_and_language(capsys, monkeypatch):
Expand Down

0 comments on commit 051febf

Please sign in to comment.