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 cb19fc2 commit 79c966cCopy full SHA for 79c966c
1 file changed
Lib/test/test_embed.py
@@ -1781,13 +1781,10 @@ def test_initconfig_api(self):
1781
'perf_profiling': 2,
1782
}
1783
config_dev_mode(preconfig, config)
1784
- using_jit = any(x.startswith("JIT") for x in get_build_info())
1785
- if using_jit:
1786
- stderr = "<sys>:0: RuntimeWarning: JIT deactivated as perf profiling support is active"
1787
- else:
1788
- stderr = ""
+ # Temporarily enable ignore_stderr=True to ignore warnings on JIT builds
+ # See gh-126255 for more information
1789
self.check_all_configs("test_initconfig_api", config, preconfig,
1790
- api=API_ISOLATED, stderr=stderr)
+ api=API_ISOLATED, ignore_stderr=True)
1791
1792
def test_initconfig_get_api(self):
1793
self.run_embedded_interpreter("test_initconfig_get_api")
0 commit comments