Skip to content

Commit cfa02a9

Browse files
author
bweigel
committed
update serverless.yml
1 parent 5066366 commit cfa02a9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/base/serverless.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ custom:
1717
fileName: ${opt:fileName, 'requirements.txt'}
1818
useStaticCache: ${opt:useStaticCache, self:custom.defaults.useStaticCache}
1919
useDownloadCache: ${opt:useDownloadCache, self:custom.defaults.useDownloadCache}
20-
cacheLocation: ${opt:cacheLocation, self:custom.defaults.cacheLocation}
20+
cacheLocation: ${opt:cacheLocation, ''}
2121
defaults:
2222
slim: false
2323
slimPatterns: false
@@ -27,14 +27,13 @@ custom:
2727
individually: false
2828
useStaticCache: false
2929
useDownloadCache: false
30-
cacheLocation: ''
30+
include: [handler.py]
3131

3232
package:
3333
individually: ${opt:individually, self:custom.defaults.individually}
3434
exclude:
3535
- '**/*'
36-
include:
37-
- handler.py
36+
include: ${opt:include, self:custom.defaults.include}
3837

3938
functions:
4039
hello:

0 commit comments

Comments
 (0)