We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce9d8e commit 78795beCopy full SHA for 78795be
index.js
@@ -109,7 +109,7 @@ class ServerlessPythonRequirements {
109
get targetFuncs() {
110
let inputOpt = this.serverless.processedInput.options;
111
return inputOpt.function
112
- ? [inputOpt.functionObj]
+ ? [this.serverless.service.functions[inputOpt.function]]
113
: values(this.serverless.service.functions).filter((func) => !func.image);
114
}
115
test.js
@@ -212,7 +212,6 @@ test(
212
dockerImage: 'break the build to log the command',
213
},
214
});
215
- console.log('STDOUT', stdout);
216
t.true(
217
stdout.includes(
218
`-v ${__dirname}${sep}tests${sep}base${sep}custom_ssh:/root/.ssh/custom_ssh:z`
0 commit comments