@@ -863,6 +863,8 @@ def test_escaped_table_name(self):
863
863
tm .assert_frame_equal (res , df )
864
864
865
865
866
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
867
+ 'causing a Resourcewarning' )
866
868
@pytest .mark .single
867
869
class TestSQLApi (SQLAlchemyMixIn , _TestSQLApi ):
868
870
"""
@@ -1054,11 +1056,15 @@ def setup_method(self, load_iris_data):
1054
1056
# super(_EngineToConnMixin, self).teardown_method(method)
1055
1057
1056
1058
1059
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1060
+ 'causing a Resourcewarning' )
1057
1061
@pytest .mark .single
1058
1062
class TestSQLApiConn (_EngineToConnMixin , TestSQLApi ):
1059
1063
pass
1060
1064
1061
1065
1066
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1067
+ 'causing a Resourcewarning' )
1062
1068
@pytest .mark .single
1063
1069
class TestSQLiteFallbackApi (SQLiteMixIn , _TestSQLApi ):
1064
1070
"""
@@ -1138,6 +1144,8 @@ def test_sqlite_type_mapping(self):
1138
1144
# -- Database flavor specific tests
1139
1145
1140
1146
1147
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1148
+ 'causing a Resourcewarning' )
1141
1149
class _TestSQLAlchemy (SQLAlchemyMixIn , PandasSQLTest ):
1142
1150
"""
1143
1151
Base class for testing the sqlalchemy backend.
@@ -1930,31 +1938,43 @@ def test_schema_support(self):
1930
1938
tm .assert_frame_equal (res1 , res2 )
1931
1939
1932
1940
1941
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1942
+ 'causing a Resourcewarning' )
1933
1943
@pytest .mark .single
1934
1944
class TestMySQLAlchemy (_TestMySQLAlchemy , _TestSQLAlchemy ):
1935
1945
pass
1936
1946
1937
1947
1948
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1949
+ 'causing a Resourcewarning' )
1938
1950
@pytest .mark .single
1939
1951
class TestMySQLAlchemyConn (_TestMySQLAlchemy , _TestSQLAlchemyConn ):
1940
1952
pass
1941
1953
1942
1954
1955
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1956
+ 'causing a Resourcewarning' )
1943
1957
@pytest .mark .single
1944
1958
class TestPostgreSQLAlchemy (_TestPostgreSQLAlchemy , _TestSQLAlchemy ):
1945
1959
pass
1946
1960
1947
1961
1962
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1963
+ 'causing a Resourcewarning' )
1948
1964
@pytest .mark .single
1949
1965
class TestPostgreSQLAlchemyConn (_TestPostgreSQLAlchemy , _TestSQLAlchemyConn ):
1950
1966
pass
1951
1967
1952
1968
1969
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1970
+ 'causing a Resourcewarning' )
1953
1971
@pytest .mark .single
1954
1972
class TestSQLiteAlchemy (_TestSQLiteAlchemy , _TestSQLAlchemy ):
1955
1973
pass
1956
1974
1957
1975
1976
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
1977
+ 'causing a Resourcewarning' )
1958
1978
@pytest .mark .single
1959
1979
class TestSQLiteAlchemyConn (_TestSQLiteAlchemy , _TestSQLAlchemyConn ):
1960
1980
pass
@@ -2195,6 +2215,8 @@ def _skip_if_no_pymysql():
2195
2215
pytest .skip ('pymysql not installed, skipping' )
2196
2216
2197
2217
2218
+ @pytest .mark .skip ('trying to find unclosed socket causing that is '
2219
+ 'causing a Resourcewarning' )
2198
2220
@pytest .mark .single
2199
2221
class TestXSQLite (SQLiteMixIn ):
2200
2222
0 commit comments