Skip to content

Commit

Permalink
Skipping lc test for V3 release (#1009)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavin-aguiar authored Apr 21, 2022
1 parent 548e582 commit 4050df3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/endtoend/test_linux_consumption.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from unittest import TestCase

import os
import sys
from unittest import TestCase, skipIf

from requests import Request

from azure_functions_worker.testutils_lc import (
LinuxConsumptionWebHostController
)
from azure_functions_worker.utils.common import is_python_version


class TestLinuxConsumption(TestCase):
Expand Down Expand Up @@ -56,6 +57,8 @@ def test_http_no_auth(self):
resp = ctrl.send_request(req)
self.assertEqual(resp.status_code, 200)

@skipIf(is_python_version('3.7'),
"Skip the tests for Python 3.7.")
def test_common_libraries(self):
"""A function app with the following requirements.txt:
Expand Down

0 comments on commit 4050df3

Please sign in to comment.