Skip to content

Commit a1efe7e

Browse files
committed
BUG: fix nested meta path bug in json_normalize (GH 27220)
1 parent 2a695e9 commit a1efe7e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/json/test_normalize.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import json
22

3+
import sys
34
import numpy as np
45
import pytest
56

@@ -287,6 +288,7 @@ def test_shallow_nested(self):
287288
expected = DataFrame(ex_data, columns=result.columns)
288289
tm.assert_frame_equal(result, expected)
289290

291+
@pytest.mark.skipif(sys.version_info < (3, 6), reason="drop support for 3.5 soon")
290292
def test_nested_meta_path_with_nested_record_path(self, state_data):
291293
# GH 27220
292294
result = json_normalize(

0 commit comments

Comments
 (0)