MCPcopy Index your code
hub / github.com/PyO3/rust-numpy / default

Function default

x.py:37–56  ·  view source on GitHub ↗
(args)

Source from the content-addressed store, hash-verified

35
36
37def default(args):
38 format_(args)
39
40 if nightly():
41 run(
42 "cargo",
43 "clippy",
44 "--all-features",
45 "--tests",
46 "--benches",
47 "--",
48 *DENY_WARNINGS,
49 )
50 else:
51 run("cargo", "clippy", "--all-features", "--tests", "--", *DENY_WARNINGS)
52
53 for manifest in gen_examples("Cargo.toml"):
54 run("cargo", "clippy", "--manifest-path", manifest, "--", *DENY_WARNINGS)
55
56 run("cargo", "test", "--all-features", "--lib", "--tests")
57
58
59def check(args):

Callers 3

insert_sharedFunction · 0.85
acquireMethod · 0.85
acquire_mutMethod · 0.85

Calls 4

format_Function · 0.85
nightlyFunction · 0.85
runFunction · 0.85
gen_examplesFunction · 0.85

Tested by

no test coverage detected