We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dda3a48 commit 0f19f1cCopy full SHA for 0f19f1c
test/framework/easyconfig.py
@@ -3052,6 +3052,10 @@ def test_template_constant_dict(self):
3052
self.assertEqual(res, expected)
3053
3054
# mock get_avail_core_count which is used by set_parallel -> det_parallelism
3055
+ try:
3056
+ del st.det_parallelism._default_parallelism # Remove cache value
3057
+ except AttributeError:
3058
+ pass # Ignore if not present
3059
orig_get_avail_core_count = st.get_avail_core_count
3060
st.get_avail_core_count = lambda: 42
3061
0 commit comments