File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation. All rights reserved.
22# Licensed under the MIT License.
3- from unittest import TestCase
4-
53import os
64import sys
5+ from unittest import TestCase , skipIf
6+
77from requests import Request
88
99from azure_functions_worker .testutils_lc import (
1010 LinuxConsumptionWebHostController
1111)
12+ from azure_functions_worker .utils .common import is_python_version
1213
1314
1415class TestLinuxConsumption (TestCase ):
@@ -56,6 +57,8 @@ def test_http_no_auth(self):
5657 resp = ctrl .send_request (req )
5758 self .assertEqual (resp .status_code , 200 )
5859
60+ @skipIf (is_python_version ('3.7' ),
61+ "Skip the tests for Python 3.7." )
5962 def test_common_libraries (self ):
6063 """A function app with the following requirements.txt:
6164
You can’t perform that action at this time.
0 commit comments