From 2a2adb3f94cc165014d746102e12f9620f271391 Mon Sep 17 00:00:00 2001 From: RosterIn <48057736+RosterIn@users.noreply.github.com> Date: Wed, 17 Mar 2021 13:57:15 +0200 Subject: [PATCH] Undo skip snowflake integration tests (#14844) Snowflake doesn't monkey patch any more so there is no need to skip the tests any longer. --- tests/providers/snowflake/__init__.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/providers/snowflake/__init__.py b/tests/providers/snowflake/__init__.py index ee366dc52ce62..13a83393a9124 100644 --- a/tests/providers/snowflake/__init__.py +++ b/tests/providers/snowflake/__init__.py @@ -14,11 +14,3 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -import os -import unittest - -if os.environ.get('INTEGRATION_PRESTO') == 'true': - raise unittest.SkipTest( - 'Snowflake monkeypatch the Python core to force SSL certificate validation.' - 'To avoid these side effects, these tests were skipped.' - )