in generators/package/index.js [103:112]
end() {
if (!this.props.withPackage) {
return;
}
this.log(`Executing 'uv run pytest' in 'src/${this.props.packageSlug}'...`);
this.spawnSync("uv", ["run", "pytest"], {
cwd: this.destinationPath(`src/${this.props.packageSlug}`),
});
}