-
Notifications
You must be signed in to change notification settings - Fork 69
Closed
Description
Environment details:
import sys
def main(args):
return { "exe" : sys.executable, "path": sys.path }
Steps to reproduce the issue:
- Code as above
- Zip the source into eg. test-bug.zip
- bx wsk action create --kind python:3.7 TEST37 test-bug.zip
- bx wsk action invoke TEST37 --result
Provide the expected results and outputs:
{
"exe": "SHOULD NOT BE EMPTY",
"path": [
"/action/1/src",
"/usr/local/lib/python37.zip",
"/usr/local/lib/python3.7",
"/usr/local/lib/python3.7/lib-dynload",
"/usr/local/lib/python3.7/site-packages"
]
}
Provide the actual results and outputs:
{
"exe": "",
"path": [
"/action/1/src",
"/usr/local/lib/python37.zip",
"/usr/local/lib/python3.7",
"/usr/local/lib/python3.7/lib-dynload",
"/usr/local/lib/python3.7/site-packages"
]
}
Additional information you deem important:
Metadata
Metadata
Assignees
Labels
No labels