From 073a542a8dbc9b5fbe3325611bd1e85983cdb5bc Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 15 Nov 2018 09:16:49 +0100 Subject: [PATCH] missed one --- pandas/tests/io/test_common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandas/tests/io/test_common.py b/pandas/tests/io/test_common.py index 9918e7c82f2381..2f2b792588a923 100644 --- a/pandas/tests/io/test_common.py +++ b/pandas/tests/io/test_common.py @@ -99,9 +99,6 @@ def test_stringify_path_fspath(self): ]) @pytest.mark.parametrize('path_type', path_types) def test_infer_compression_from_path(self, extension, expected, path_type): - if expected == 'gzip': - pytest.skip('trying to find unclosed socket causing that is ' - 'causing a Resourcewarning') path = path_type('foo/bar.csv' + extension) compression = icom._infer_compression(path, compression='infer') assert compression == expected