File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright (c) Microsoft Corporation. All rights reserved.
2
2
# Licensed under the MIT License.
3
3
import time
4
- from json import JSONDecodeError
4
+
5
+ from requests import JSONDecodeError
5
6
6
7
from tests .utils import testutils
7
8
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Microsoft Corporation. All rights reserved.
2
2
# Licensed under the MIT License.
3
+ from unittest import skipIf
3
4
5
+ from azure_functions_worker .utils .common import is_envvar_true
4
6
from tests .utils import testutils
7
+ from tests .utils .constants import DEDICATED_DOCKER_TEST , CONSUMPTION_DOCKER_TEST
5
8
6
9
10
+ @skipIf (is_envvar_true (DEDICATED_DOCKER_TEST )
11
+ or is_envvar_true (CONSUMPTION_DOCKER_TEST ),
12
+ "This will be fixed in "
13
+ "https://github.com/Azure/azure-functions-python-worker/pull/1199" )
7
14
class TestDurableFunctions (testutils .WebHostTestCase ):
8
15
9
16
@classmethod
You can’t perform that action at this time.
0 commit comments