Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update functional tests #1244

Merged
merged 2 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ jobs:
lithops test -b code_engine -s ibm_cos -k

- name: Delete Lithops CE runtime
if: needs.determine_runnable_jobs.outputs.code_engine == 'true'
if: needs.determine_runnable_test_jobs.outputs.code_engine == 'true'
run: |
lithops runtime delete ${{ secrets.DOCKER_USER }}/lithops-ce-gihub-ci:${{ github.run_id }} -b code_engine -s ibm_cos
1 change: 1 addition & 0 deletions lithops/serverless/backends/aliyun_fc/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
tblib
cloudpickle
ps-mem
psutil
"""

REQ_PARAMS_1 = ('account_id', 'access_key_id', 'access_key_secret')
Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/aws_lambda/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
'cloudpickle',
'ps-mem',
'tblib',
'urllib3<2'
'urllib3<2',
'psutil'
]

AVAILABLE_PY_RUNTIMES = {
Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/azure_containers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@
numpy \
cloudpickle \
ps-mem \
tblib
tblib \
psutil

WORKDIR /app
COPY lithops_azure_ca.zip .
Expand Down
1 change: 1 addition & 0 deletions lithops/serverless/backends/azure_functions/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
cloudpickle
ps-mem
tblib
psutil
"""


Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/code_engine/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
numpy \
cloudpickle \
ps-mem \
tblib
tblib \
psutil

ENV PORT 8080
ENV CONCURRENCY 1
Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/gcp_cloudrun/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
google-cloud-pubsub \
google-api-python-client \
gcsfs \
google-auth
google-auth \
psutil


ENV PORT 8080
Expand Down
1 change: 1 addition & 0 deletions lithops/serverless/backends/gcp_functions/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
cloudpickle
ps-mem
tblib
psutil
"""


Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/k8s/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
numpy \
cloudpickle \
ps-mem \
tblib
tblib \
psutil

ENV PYTHONUNBUFFERED TRUE

Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/knative/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
cloudpickle \
paramiko \
ps-mem \
tblib
tblib \
psutil

ENV PORT 8080
ENV CONCURRENCY 1
Expand Down
3 changes: 2 additions & 1 deletion lithops/serverless/backends/oracle_f/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
cloudpickle \
ps-mem \
tblib \
oci
oci \
psutil

ARG FUNCTION_DIR="/function"

Expand Down
Loading