File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 37
37
PYTHON_THREADPOOL_THREAD_COUNT_MIN = 1
38
38
PYTHON_THREADPOOL_THREAD_COUNT_MAX = 32
39
39
PYTHON_ISOLATE_WORKER_DEPENDENCIES_DEFAULT = False
40
- PYTHON_ISOLATE_WORKER_DEPENDENCIES_DEFAULT_39 = True
40
+ PYTHON_ISOLATE_WORKER_DEPENDENCIES_DEFAULT_39 = False
41
41
PYTHON_ENABLE_WORKER_EXTENSIONS_DEFAULT = False
42
42
PYTHON_ENABLE_WORKER_EXTENSIONS_DEFAULT_39 = True
43
43
Original file line number Diff line number Diff line change @@ -454,9 +454,8 @@ def test_use_worker_dependencies_default_python_36_37_38(self):
454
454
with self .assertRaises (ImportError ):
455
455
import common_module # NoQA
456
456
457
- @unittest .skipUnless (
458
- sys .version_info .major == 3 and sys .version_info .minor == 9 ,
459
- 'Test only available for Python 3.9'
457
+ @unittest .skip (
458
+ 'Test is not available due to feature flag is turned off'
460
459
)
461
460
def test_use_worker_dependencies_default_python_39 (self ):
462
461
# Feature should be enabled in Python 3.9 by default
@@ -523,9 +522,8 @@ def test_prioritize_customer_dependencies_default_python_36_37_38(self):
523
522
with self .assertRaises (ImportError ):
524
523
import common_module # NoQA
525
524
526
- @unittest .skipUnless (
527
- sys .version_info .major == 3 and sys .version_info .minor == 9 ,
528
- 'Test only available for Python 3.9'
525
+ @unittest .skip (
526
+ 'Test is not available since feature flag is turned off'
529
527
)
530
528
def test_prioritize_customer_dependencies_default_python_39 (self ):
531
529
# Feature should be enabled in Python 3.9 by default
You can’t perform that action at this time.
0 commit comments