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 44
44
PYTHON_THREADPOOL_THREAD_COUNT_MAX_37 = 32
45
45
46
46
PYTHON_ISOLATE_WORKER_DEPENDENCIES_DEFAULT = False
47
- PYTHON_ISOLATE_WORKER_DEPENDENCIES_DEFAULT_310 = True
47
+ PYTHON_ISOLATE_WORKER_DEPENDENCIES_DEFAULT_310 = False
48
48
PYTHON_ENABLE_WORKER_EXTENSIONS_DEFAULT = False
49
49
PYTHON_ENABLE_WORKER_EXTENSIONS_DEFAULT_39 = True
50
50
Original file line number Diff line number Diff line change @@ -571,10 +571,8 @@ def test_use_worker_dependencies_default_python_36_37_38_39(self):
571
571
with self .assertRaises (ImportError ):
572
572
import common_module # NoQA
573
573
574
- @unittest .skipUnless (
575
- is_python_version ('3.10' ),
576
- 'Test only available for python 3.10'
577
- )
574
+ @unittest .skip ('Skipping since PYTHON_ISOLATE_WORKER_DEPENDENCIES is '
575
+ 'disabled by default' )
578
576
def test_use_worker_dependencies_default_python_310 (self ):
579
577
# Feature should be enabled in Python 3.10 by default
580
578
# Setup paths
@@ -642,8 +640,8 @@ def test_prioritize_customer_dependencies_default_python_36_37_38_39(self):
642
640
with self .assertRaises (ImportError ):
643
641
import common_module # NoQA
644
642
645
- @unittest .skipUnless ( is_python_version ( '3.10' ),
646
- 'Test only available for python 3.10 ' )
643
+ @unittest .skip ( 'Skipping since PYTHON_ISOLATE_WORKER_DEPENDENCIES is '
644
+ 'disabled by default ' )
647
645
def test_prioritize_customer_dependencies_default_python_310 (self ):
648
646
# Feature should be enabled in Python 3.10 by default
649
647
# Setup paths
You can’t perform that action at this time.
0 commit comments