This repository was archived by the owner on Jan 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
ansible/environments/local/group_vars Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,28 +35,13 @@ runtimes_manifest:
3535 name: "nodejs6action"
3636 deprecated: false
3737 python:
38- - kind: "python:2"
39- default: true
40- image:
41- name: "python2action"
42- deprecated: false
43- - kind: "python-jessie:3"
44- default: false
45- image:
46- name: "action-python-v3.6"
47- deprecated: false
48- - kind: "python:3.6"
49- default: false
50- image:
51- name: "action-python-v3.6"
52- deprecated: false
5338 - kind: "python:3.7"
5439 default: false
5540 image:
5641 name: "action-python-v3.7"
5742 deprecated: false
5843 - kind: "python:3.9"
59- default: false
44+ default: true
6045 image:
6146 name: "action-python-v3.9"
6247 deprecated: false
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ tasks.withType(Test) {
1515 exceptionFormat = ' full'
1616 }
1717 outputs. upToDateWhen { false } // force tests to run every time
18+
19+ // We only test the python:3.7 and python:3.9 runtimes.
20+ // The default python:3.6 is deprecated (it reached end of support).
21+ include ' **/*IBMPython37*'
22+ include ' **/*IBMPython39*'
1823}
1924
2025task testWithoutCredentials (type : Test ) {
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ docker pull ibmfunctions/invoker:nightly
2626docker tag ibmfunctions/invoker:nightly ${IMAGE_PREFIX} /invoker
2727docker pull openwhisk/nodejs6action:nightly
2828docker tag openwhisk/nodejs6action:nightly nodejs6action
29- docker pull openwhisk/python2action
30- docker tag openwhisk/python2action python2action
3129
3230TERM=dumb ./gradlew install
3331
Original file line number Diff line number Diff line change @@ -13,10 +13,6 @@ export OPENWHISK_HOME=$WHISKDIR
1313WHISK_CLI=" ${WHISKDIR} /bin/wsk -i"
1414
1515# Run a simple action using the kind
16- ${WHISK_CLI} action update echoPython ${ROOTDIR} /tests/dat/echo.py --kind " python-jessie:3"
17- ${WHISK_CLI} action invoke echoPython -b
18- ${WHISK_CLI} action update echoPython ${ROOTDIR} /tests/dat/echo.py --kind " python:3.6"
19- ${WHISK_CLI} action invoke echoPython -b
2016${WHISK_CLI} action update echoPython ${ROOTDIR} /tests/dat/echo.py --kind " python:3.7"
2117${WHISK_CLI} action invoke echoPython -b
2218${WHISK_CLI} action update echoPython ${ROOTDIR} /tests/dat/echo.py --kind " python:3.9"
3228fi
3329
3430
35-
36-
3731# For some reason there no activations, maybe index not ready
3832# ${WHISK_CLI} activation get --last
You can’t perform that action at this time.
0 commit comments