We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a79b365 commit e61ce2cCopy full SHA for e61ce2c
test_unstructured/staging/test_base_staging.py
@@ -2,6 +2,7 @@
2
import json
3
import os
4
import pathlib
5
+import platform
6
import pytest
7
8
import pandas as pd
@@ -79,6 +80,9 @@ def test_convert_to_dataframe():
79
80
assert df.text.equals(expected_df.text) is True
81
82
83
+@pytest.mark.skipif(
84
+ platform.system() == "Windows", reason="Posix Paths are not available on Windows"
85
+)
86
def test_convert_to_isd_serializes_with_posix_paths():
87
metadata = ElementMetadata(filename=pathlib.PosixPath("../../fake-file.txt"))
88
elements = [
0 commit comments