(args)
| 57 | |
| 58 | |
| 59 | def check(args): |
| 60 | run("cargo", "doc", "--no-deps", env={"RUSTDOCFLAGS": "--deny warnings"}) |
| 61 | run("cargo", "fmt", "--", "--check") |
| 62 | run("cargo", "clippy", "--all-features", "--tests", "--", *DENY_WARNINGS) |
| 63 | |
| 64 | for manifest in gen_examples("Cargo.toml"): |
| 65 | run("cargo", "fmt", "--manifest-path", manifest, "--", "--check") |
| 66 | run("cargo", "clippy", "--manifest-path", manifest, "--", *DENY_WARNINGS) |
| 67 | |
| 68 | |
| 69 | def doc(args): |
no test coverage detected