File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
from tests .utils import testutils
8
8
9
9
10
- class TestPythonThreadpoolThreadCount2 (testutils .WebHostTestCase ):
10
+ class TestPythonThreadpoolThreadCount (testutils .WebHostTestCase ):
11
11
""" Test the Http Trigger with setting up the python threadpool thread
12
12
count to 2. this test will check if both requests should be processed
13
13
at the same time. this file is more focus on testing the E2E flow
@@ -31,7 +31,7 @@ def get_script_dir(cls):
31
31
return testutils .E2E_TESTS_FOLDER / 'http_functions'
32
32
33
33
@testutils .retryable_test (3 , 5 )
34
- def test_http_func_with_thread_count_2 (self ):
34
+ def test_http_func_with_thread_count (self ):
35
35
response = [None , None ]
36
36
37
37
def http_req (res_num ):
@@ -55,7 +55,7 @@ def http_req(res_num):
55
55
self .assertTrue (time_diff_in_seconds < 1 )
56
56
57
57
58
- class TestPythonThreadpoolThreadCount2Stein ( TestPythonThreadpoolThreadCount2 ):
58
+ class TestPythonThreadpoolThreadCountStein ( TestPythonThreadpoolThreadCount ):
59
59
60
60
@classmethod
61
61
def get_script_dir (cls ):
Original file line number Diff line number Diff line change 7
7
from tests .utils import testutils
8
8
9
9
10
- class TestWorkerProcessCount2 (testutils .WebHostTestCase ):
10
+ class TestWorkerProcessCount (testutils .WebHostTestCase ):
11
11
"""Test the Http Trigger with setting up the python worker process count
12
12
to 2. this test will check if both requests should be processed at the
13
13
same time. this file is more focused on testing the E2E flow scenario for
@@ -56,7 +56,7 @@ def http_req(res_num):
56
56
self .assertTrue (time_diff_in_seconds < 1 )
57
57
58
58
59
- class TestWorkerProcessCount2Stein ( TestWorkerProcessCount2 ):
59
+ class TestWorkerProcessCountStein ( TestWorkerProcessCount ):
60
60
61
61
@classmethod
62
62
def get_script_dir (cls ):
You can’t perform that action at this time.
0 commit comments