1use super::build; 2use anyhow::Result; 3 4pub fn run(args: build::BuildCommand) -> Result<()> { 5 crate::pkg::package::test::run(&args) 6}