File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ def test_datetime_w_tz_duckdb() -> None:
485485
486486
487487def test_datetime_w_tz_pyspark (constructor : Constructor ) -> None : # pragma: no cover
488- if "pyspark" not in str (constructor ):
488+ if "pyspark" not in str (constructor ) or "sqlframe" in str ( constructor ) :
489489 pytest .skip ()
490490 pytest .importorskip ("pyspark" )
491491 pytest .importorskip ("zoneinfo" )
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ def test_convert_time_zone_to_connection_tz_duckdb() -> None:
158158def test_convert_time_zone_to_connection_tz_pyspark (
159159 constructor : Constructor ,
160160) -> None : # pragma: no cover
161- if "pyspark" not in str (constructor ):
161+ if "pyspark" not in str (constructor ) or "sqlframe" in str ( constructor ) :
162162 pytest .skip ()
163163 pytest .importorskip ("pyspark" )
164164 pytest .importorskip ("zoneinfo" )
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ def test_replace_time_zone_to_connection_tz_duckdb() -> None:
149149def test_replace_time_zone_to_connection_tz_pyspark (
150150 constructor : Constructor ,
151151) -> None : # pragma: no cover
152- if "pyspark" not in str (constructor ):
152+ if "pyspark" not in str (constructor ) or "sqlframe" in str ( constructor ) :
153153 pytest .skip ()
154154 pytest .importorskip ("pyspark" )
155155 pytest .importorskip ("zoneinfo" )
You can’t perform that action at this time.
0 commit comments