Skip to content

Commit

Permalink
unskip lc tests (#1077)
Browse files Browse the repository at this point in the history
* unskip lc tests

* flakey8

* skip for 3.10 lc tests only

Co-authored-by: peterstone2017 <[email protected]>
  • Loading branch information
YunchuWang and peterstone2017 authored Aug 1, 2022
1 parent 74aea84 commit 23a5fc3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/endtoend/test_linux_consumption.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Licensed under the MIT License.
import os
import sys
from unittest import TestCase, skip

from unittest import TestCase, skipIf
from requests import Request

from azure_functions_worker.testutils_lc import (
Expand All @@ -13,7 +13,8 @@
_DEFAULT_HOST_VERSION = "4"


@skip
@skipIf(sys.version_info >= (3, 10, 0),
"Skip the tests for Python 3.10 and above")
class TestLinuxConsumption(TestCase):
"""Test worker behaviors on specific scenarios.
Expand Down

0 comments on commit 23a5fc3

Please sign in to comment.