Skip to content

Commit

Permalink
skip markdown tests on macOS, fixes #2267
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed May 25, 2023
1 parent 34a5302 commit 73da7e9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_markdown.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Characters are currently not properly supported
# on macOS due to an Excel/AppleScript bug
import sys
from pathlib import Path

import pytest

import xlwings as xw
from xlwings.pro import Markdown, MarkdownStyle

# Characters are currently not properly supported
# on macOS due to an Excel/AppleScript bug
if not sys.platform.startswith("win"):
pytest.skip("skipping windows-only tests", allow_module_level=True)

this_dir = Path(__file__).resolve().parent


Expand Down

0 comments on commit 73da7e9

Please sign in to comment.