TST: Read compressed URLs with c engine · pandas-dev/pandas@cb91007 (original) (raw)

Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ def test_compressed_urls(self):
39 39 for compression, extension in self.compression_to_extension.items():
40 40 url = self.base_url + extension
41 41 # args is a (compression, engine) tuple
42 -for args in product([compression, 'infer'], ['python']):
42 +for args in product([compression, 'infer'], ['python', 'c']):
43 43 # test_fxn is a workaround for more descriptive nose reporting.
44 44 # See http://stackoverflow.com/a/37393684/4651668.
45 45 test_fxn = functools.partial(self.check_table)