Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 33.9k
gh-142927: Auto-open HTML output in browser after generation#143178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Conversation
ivonastojanovic commented Dec 25, 2025 • edited by bedevere-app bot
Loading Uh oh!
There was an error while loading. Please reload this page.
edited by bedevere-app bot
Uh oh!
There was an error while loading. Please reload this page.
pablogsal commented Dec 25, 2025
You probably need to update the test to NOT open the browser by default and make the CLI the only that sets that option to True :) |
pablogsal commented Dec 25, 2025
Changing the issue to gh-142927 |
pablogsal commented Dec 25, 2025
And we also need to mention something related to this behavior in the docs |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
pablogsal commented Dec 25, 2025
Some tests re opening browsers now 😆 You probably want this diff at least: diff --git a/Lib/test/test_profiling/test_sampling_profiler/test_children.py b/Lib/test/test_profiling/test_sampling_profiler/test_children.py index b7dc878a238..3d6db7dcb56 100644 --- a/Lib/test/test_profiling/test_sampling_profiler/test_children.py+++ b/Lib/test/test_profiling/test_sampling_profiler/test_children.py@@ -992,6 +992,7 @@ def test_subprocesses_flag_with_flamegraph_output(self): "-r", "100", "--flamegraph", + "--no-browser", "-o", output_file, script_file, |
danielhollas commented Dec 26, 2025 • edited
Loading Uh oh!
There was an error while loading. Please reload this page.
edited
Uh oh!
There was an error while loading. Please reload this page.
Hey, 👋 sorry for a drive-by comment, just wanted to chime in with a specific use case: the default behaviour you're introducing here is suuuper annoying when being logged in via SSH (and based on my experience it's too easy to forget the According to this post, it might be possible (at least on best effort basis) to check some environment variables to detect the SSH connection, and perhaps disable the browser-opening automatically in that case? If that sounds reasonable I can do a bit of testing for SSH detection tomorrow. The biggest disadvantage I see that it would make the default behaviour less trivial to explaing to users... |
ivonastojanovic commented Dec 31, 2025
Hey! After thinking about it a bit more, I agree with you 🙂 It does seem more annoying to forget to set |
Add a --browser flag that automatically opens the generated flamegraph and heatmap HTML files in the default browser once profiling completes.
6c5bc60 to 2d6e994Comparedanielhollas commented Dec 31, 2025 • edited
Loading Uh oh!
There was an error while loading. Please reload this page.
edited
Uh oh!
There was an error while loading. Please reload this page.
pablogsal left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
pablogsal commented Jan 1, 2026
Given the restrictions i think for now the best course of action is making it opt-in! Great work @ivonastojanovic |
5d13335 into python:mainUh oh!
There was an error while loading. Please reload this page.


Automatically open flamegraph and heatmap HTML output in the default browser after profiling completes. Add
--no-browserflag to disable this behavior.Towards #142927.
CC: @pablogsal@lkollar