Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 512 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (20 loc) · 512 Bytes

Contributing

Running Tests

While tests support the standard cargo test option, another option for running tests is cargo-nextest.

Run All Tests

NEXTEST_RETRIES=3 cargo nextest run --all-features

Run All Async Client Tests

cargo test async --all-features

Run All Sync Client Tests

cargo test blocking --all-features

Run a Specific Test

NEXTEST_RETRIES=3 cargo nextest run -E "test(test_list_all_vhost_limits)"