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 138e01c commit 0e7a96b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/commands/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
args = ['ocdsextensionregistry', 'download']


# 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, tmpdir):
monkeypatch.setattr(sys, 'argv', args + [str(tmpdir), 'location==v1.1.4'])
main()
Expand Down

0 comments on commit 0e7a96b

Please sign in to comment.