Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting
| print(f"\n✓ Selected: {_format_test_choice(tests[selected_index], selected_index + 1)}") | ||
| return [tests[selected_index]] |
There was a problem hiding this comment.
Restore ability to select multiple tests interactively
The new questionary.select flow only ever returns a single index, so _prompt_select_interactive now always returns a list with one test (return [tests[selected_index]]). The CLI upstream (upload_command) and the fallback prompt continue to support selecting multiple tests in one run, which was previously possible with the checkbox UI. With this change a user who discovers several tests must rerun the upload command for each test, making the interactive path functionally inconsistent with the rest of the command. Consider switching back to a multi-select widget or otherwise preserving multi-selection support.
Useful? React with 👍 / 👎.
No description provided.