Skip to content

Commit

Permalink
tests(sql): skip test on windows due to incorrect encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
kiike committed Mar 6, 2024
1 parent be69b9c commit 3a4976d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .testlib import TemporaryLibrary


@pytest.mark.skipif(os.name == "nt", reason="encoding is incorrect on windows")
@pytest.mark.library_setup(populate=False)
def test_simple(tmp_library: TemporaryLibrary) -> None:
sqlpath = os.path.join(os.path.dirname(__file__), "resources", "sql")
Expand Down

0 comments on commit 3a4976d

Please sign in to comment.