Skip to content

bpo-29512: Change bisect to bisect_cmd in docstring #13040

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

Merged
merged 1 commit into from
May 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Lib/test/bisect_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

Find the test_os test method which alters the environment:

./python -m test.bisect --fail-env-changed test_os
./python -m test.bisect_cmd --fail-env-changed test_os

Find a reference leak in "test_os", write the list of failing tests into the
"bisect" file:

./python -m test.bisect -o bisect -R 3:3 test_os
./python -m test.bisect_cmd -o bisect -R 3:3 test_os

Load an existing list of tests from a file using -i option:

./python -m test --list-cases -m FileTests test_os > tests
./python -m test.bisect -i tests test_os
./python -m test.bisect_cmd -i tests test_os
"""

import argparse
Expand Down