(args)
| 79 | |
| 80 | |
| 81 | def test(args): |
| 82 | run("cargo", "test", "--all-features", "--lib") |
| 83 | |
| 84 | if args.name is None: |
| 85 | run("cargo", "test", "--all-features", "--tests") |
| 86 | else: |
| 87 | run("cargo", "test", "--all-features", "--test", args.name) |
| 88 | |
| 89 | |
| 90 | def bench(args): |