Skip to content
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

docs: add integration test section to CONTRIBUTING.md #160

Merged
merged 2 commits into from
Jul 28, 2022
Merged
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ To enable logging to stderr during a run of `cargo test` set the Rust
RUST_LOG=info cargo test --workspace
```

### Integration tests

We have integration test suits in the SQL level. Any change may have influence on the user-facing query execution should be covered by the integration test. Refer to [this document](./tests/README.md) for more information.
waynexia marked this conversation as resolved.
Show resolved Hide resolved

## Running `rustfmt` and `clippy`

CI will check the code formatting with [`rustfmt`](https://github.com/rust-lang/rustfmt) and Rust best practices with [`clippy`](https://github.com/rust-lang/rust-clippy).
Expand Down