(args)
| 67 | |
| 68 | |
| 69 | def doc(args): |
| 70 | if args.name is None: |
| 71 | run("cargo", "test", "--all-features", "--doc") |
| 72 | else: |
| 73 | run("cargo", "test", "--all-features", "--doc", args.name) |
| 74 | |
| 75 | if args.open: |
| 76 | run("cargo", "doc", "--all-features", "--open") |
| 77 | else: |
| 78 | run("cargo", "doc", "--all-features") |
| 79 | |
| 80 | |
| 81 | def test(args): |