@@ -39,6 +39,7 @@ def setup_method(self, datapath):
39
39
df .iloc [:, k ] = df .iloc [:, k ].astype (np .float64 )
40
40
self .data .append (df )
41
41
42
+ @pytest .mark .slow
42
43
def test_from_file (self ):
43
44
for j in 0 , 1 :
44
45
df0 = self .data [j ]
@@ -47,6 +48,7 @@ def test_from_file(self):
47
48
df = pd .read_sas (fname , encoding = "utf-8" )
48
49
tm .assert_frame_equal (df , df0 )
49
50
51
+ @pytest .mark .slow
50
52
def test_from_buffer (self ):
51
53
for j in 0 , 1 :
52
54
df0 = self .data [j ]
@@ -61,6 +63,7 @@ def test_from_buffer(self):
61
63
df = rdr .read ()
62
64
tm .assert_frame_equal (df , df0 , check_exact = False )
63
65
66
+ @pytest .mark .slow
64
67
def test_from_iterator (self ):
65
68
for j in 0 , 1 :
66
69
df0 = self .data [j ]
@@ -72,6 +75,7 @@ def test_from_iterator(self):
72
75
df = rdr .read (3 )
73
76
tm .assert_frame_equal (df , df0 .iloc [2 :5 , :])
74
77
78
+ @pytest .mark .slow
75
79
def test_path_pathlib (self ):
76
80
for j in 0 , 1 :
77
81
df0 = self .data [j ]
@@ -81,6 +85,7 @@ def test_path_pathlib(self):
81
85
tm .assert_frame_equal (df , df0 )
82
86
83
87
@td .skip_if_no ("py.path" )
88
+ @pytest .mark .slow
84
89
def test_path_localpath (self ):
85
90
from py .path import local as LocalPath
86
91
@@ -91,6 +96,7 @@ def test_path_localpath(self):
91
96
df = pd .read_sas (fname , encoding = "utf-8" )
92
97
tm .assert_frame_equal (df , df0 )
93
98
99
+ @pytest .mark .slow
94
100
def test_iterator_loop (self ):
95
101
# github #13654
96
102
for j in 0 , 1 :
0 commit comments