Skip to content

Commit

Permalink
Merge pull request #283 from ikalnytskyi/feat/macos-support
Browse files Browse the repository at this point in the history
Add macOS support
  • Loading branch information
ikalnytskyi authored Nov 3, 2023
2 parents 5700bb9 + 08ddf85 commit 157aba6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
4 changes: 2 additions & 2 deletions tests/_processors/test_commonmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def test_args_pygmentize_unknown_language(testapp, language):


def test_item_exec(testapp):
"""Commonmark has to render DOT snippets into SVG if asked to render."""
"""Commonmark has to pipe code content through an executable if asked to."""

stream = commonmark.process(
testapp,
Expand All @@ -417,7 +417,7 @@ def test_item_exec(testapp):
{
"content": textwrap.dedent(
"""
```text {"exec": ["sed", "--expression", "s/ a / the /g"]}
```text {"exec": ["sed", "s/ a / the /g"]}
yoda, a jedi grandmaster
```
"""
Expand Down

0 comments on commit 157aba6

Please sign in to comment.