| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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.
| Back | FazBrowse Home | New Git URL |
Ran the tests and seemed ok
RUSTPYTHONPATH=Lib cargo run --release Lib/test/test_argparse.py Updating git repository `https://github.com/youknowone/unicode_names2.git` Finished release [optimized] target(s) in 0.84s Running `target/release/rustpython Lib/test/test_argparse.py` (...) ---------------------------------------------------------------------- Ran 1698 tests in 5.036s OK