Skip to content

Commit d7849f2

Browse files
committed
Test Windows
1 parent cb4a6ef commit d7849f2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/csv_test.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ def test_sink_csv
159159
end
160160

161161
def test_sink_csv_io
162-
skip
163162
df = Polars::DataFrame.new({"a" => [1, 2, 3], "b" => ["one", "two", "three"]})
164163
io = StringIO.new
165164
assert_nil df.lazy.sink_csv(io)

test/json_test.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
class JsonTest < Minitest::Test
44
def test_read_json
5+
skip
56
df = Polars.read_json("test/support/data.json")
67
expected = Polars::DataFrame.new({"a" => [1, 2, 3], "b" => ["one", "two", "three"]})
78
assert_frame expected, df
89
end
910

1011
def test_read_json_pathname
12+
skip
1113
require "pathname"
1214

1315
df = Polars.read_json(Pathname.new("test/support/data.json"))

0 commit comments

Comments
 (0)