Skip to content

Commit

Permalink
test: Skip test on macos-pypy39
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jan 29, 2024
1 parent 30ae300 commit f1919a1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/commands/test_mapping_sheet.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
import platform

import pytest

from ocdskit.__main__ import main
from tests import assert_command, assert_command_error, path


# https://github.com/pypy/pypy/issues/4009
@pytest.mark.skipif(
platform.system() == 'Darwin' and platform.python_implementation() == 'PyPy',
reason='CI outputs .../lib/pypy3.9/site-packages/certifi/cacert.pem None'
)
def test_command(capsys, monkeypatch):
assert_command(capsys, monkeypatch, main,
['mapping-sheet', '--infer-required', path('release-schema.json')],
Expand Down

0 comments on commit f1919a1

Please sign in to comment.