feat(argparse): update to 3.11#4592
Conversation
fanninpm
left a comment
There was a problem hiding this comment.
LGTM.
For future reference, I believe you can use the following command to test your changes locally (in a manner similar to RustPython's CI):
# this runs all of the tests (not necessary if you know which test is affected)
cargo run --release --features ssl,jit -- -m test -j 1 -u all --slowest --fail-env-changed -v
# this runs only the test suite named "test_whatever" (usually located at `Lib/test/test_whatever.py`)
cargo run --release --features ssl,jit -- -m test -j 1 -u all --slowest --fail-env-changed -v test_whateverFor a list of all resources and more command-line options, you can execute cargo run --release --features ssl,jit -- -m test -h.
Sorry, something went wrong.
|
We'd better to add the commands to the issue. |
Sorry, something went wrong.
|
Thank you! |
Sorry, something went wrong.
@fanninpm Thanks, I was not aware of that command 🙂 |
Sorry, something went wrong.
Ran the tests and seemed ok