Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fixed dev guide
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed May 21, 2022
1 parent aafba7b commit 570cc12
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ the CI to understand how to test the different parts of this library locally.
The simplest way to test the crate is to run

```bash
cargo test
cargo test --tests
```

This runs the tests of the crate without features. To run all features, use
Expand All @@ -23,12 +23,14 @@ to reduce the feature set - the tests are gated to only the relevant tests
of that feature set. For example, if improving JSON, you can use

```bash
cargo test --features io_json
cargo test --tests --features io_json
```

to only run both non-feature-specific tests and tests for json.

## Merging

We currently do not have maintaince versions and thus only PR and merge to `main`.
We currently do not have maintainance versions and thus only PR and merge to `main`.

We use labels to build a changelog - it is very important to label issues and/or PRs
accordingly. Because our changelog can contain both issues and PRs, when a PR closes
Expand Down

0 comments on commit 570cc12

Please sign in to comment.