File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ or open a PR from your own fork to start a discussion ☺️..
8
8
9
9
## 🪝 Hooks 🪝
10
10
11
- We recommend using the hooks while developing in this repository.
12
- The hooks manager is a python package which needs installing locally.
11
+ It is recommended to use git hooks while developing in this repository.
12
+ The hooks manager (pre-commit) is a python package which needs installing locally.
13
13
The best way to do this is via a virtual environment.
14
14
15
15
``` shell
@@ -22,18 +22,22 @@ The best way to do this is via a virtual environment.
22
22
## 🧱 Building 🧱
23
23
24
24
To build, simply follow the usual cargo flow.
25
+
25
26
``` shell
26
- > cargo build --all-features
27
+ > cargo build --all --all -features
27
28
```
28
29
29
30
## Tests
30
31
31
- The project currently has a good unit tests coverage,
32
+ The project currently has a unit test, and documentation test coverage,
32
33
but no integration test coverage yet.
33
- To run the tests, follow the usual cargo flow.
34
+ To run all the tests, follow the usual cargo flow.
35
+
36
+ When adding new features please try to cover the new code
37
+ with appropriate unit test cases.
34
38
35
39
``` shell
36
- > cargo test --all-features
40
+ > cargo test --all --all -features
37
41
```
38
42
39
43
## 🌍 A Tour of midi2 🌍
You can’t perform that action at this time.
0 commit comments