Skip to content

HotFix: Remove accidental pdb.set_trace() call from test file #804

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

Closed
wants to merge 1 commit into from

Conversation

TimoImhof
Copy link
Contributor

This PR removes a hidden pdb.set_trace() call in test_adapter_composition.py:

__import__("pdb").set_trace()

Problem

This line caused the test runner (pytest) to pause execution and wait for user input during test discovery or execution. Since it's not in an interactive terminal (especially when running via VS Code or CI), it appears as if the tests are hanging or failing silently.
It looks like this was a leftover debugging breakpoint that was accidentally committed.

Fix

The line has been removed to allow the test suite to run normally without interactive interruption.
After removing this, test discovery and execution complete successfully.

@TimoImhof TimoImhof changed the title Remove accidental pdb.set_trace() call from test file HotFix: Remove accidental pdb.set_trace() call from test file Apr 26, 2025
@TimoImhof TimoImhof marked this pull request as ready for review April 26, 2025 12:26
@TimoImhof TimoImhof closed this Apr 26, 2025
@TimoImhof
Copy link
Contributor Author

Was then included in #802

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant