diff --git a/core/benches/ops/README.md b/core/benches/ops/README.md index ff2d94701b0..0470d87bc3e 100644 --- a/core/benches/ops/README.md +++ b/core/benches/ops/README.md @@ -29,11 +29,12 @@ Notice: The default will skip all benches if the env is not set. Test all available backend. ```shell -cargo bench +cargo bench --features tests ``` -Test specific backend. +Test specific backend, take s3 for example, first set the corresponding environment variables of s3, then: ```shell -cargo bench fs +OPENDAL_TEST=s3 +cargo bench --features tests ```