1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Thanks for your interest in contributing to RepoPilot.
```bash
git clone https://github.com/MykytaStel/repopilot.git
cd repopilot
cargo build
```
Verify your build works:
```bash
cargo run -- scan .
```
Unit and integration tests:
```bash
cargo test
```
Run a specific integration test suite:
```bash
cargo test --test cli_stabilization
cargo test --test cli_release_smoke
cargo test --test explain_cli
```
Run a single test by name:
```bash
cargo test -- test_name_here
```
```bash
cargo fmt --check
cargo clippy --all-targets --all-features -- -D warnings
cargo test
```
Fix formatting automatically with `cargo fmt` (no flags).
Please keep PRs focused and small.
Good PRs include:
- --