Skip to content

Commit

Permalink
akip win
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Durant committed Aug 15, 2024
1 parent fb2f9dd commit 34bbd59
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_dt.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import datetime
import sys

import pytest

import pyarrow as pa

import akimbo.pandas # noqa

pd = pytest.importorskip("pandas")
WIN = "nt" in sys.platform


def test_cast():
Expand Down Expand Up @@ -73,6 +73,7 @@ def test_mixed_record():
assert s2.to_list() == data


@pytest.mark.skipif(WIN, reason="arrow on windows needs a timezone database")
def test_text_conversion():
s = pd.Series([["2024-08-01T01:00:00", None, "2024-08-01T01:01:00"]])
s2 = s.ak.str.strptime()
Expand Down

0 comments on commit 34bbd59

Please sign in to comment.