File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -126,3 +126,15 @@ Tests validate discovered environments using 4 verification methods:
1261262 . ` crates/pet/src/locators.rs ` - Core architecture patterns
1271273 . ` crates/pet-core/src/lib.rs ` - Essential traits and types
1281284 . ` crates/pet/tests/ci_test.rs ` - Comprehensive testing patterns
129+
130+
131+ ## Scripts
132+ - Use ` cargo fetch ` to download all dependencies
133+ - Use ` rustup component add clippy ` to install Clippy linter
134+ - Use ` cargo fmt --all ` to format code in all packages
135+ - Use ` cargo clippy --all-features -- -Dwarnings ` to check for linter issues
136+ - Use ` cargo build ` to build the project
137+ - Use ` cargo test --all ` to test all packages (this can take a few seconds)
138+ - Use ` cargo test [TESTNAME] ` to test a specific test
139+ - Use ` cargo test -p [SPEC] ` to test a specific package
140+ - Use ` cargo test --all ` to test all packages
You can’t perform that action at this time.
0 commit comments