Skip to content

Commit

Permalink
Add macOS support
Browse files Browse the repository at this point in the history
Add macOS to test matrix in order to make sure we don't regress on that
platform.
  • Loading branch information
ikalnytskyi committed Nov 3, 2023
1 parent 5700bb9 commit 08ddf85
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 08ddf85

Please sign in to comment.