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

fix(e2e):add memory for e2e #1321

Merged
merged 1 commit into from
Sep 30, 2022
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 scripts/client_test/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def get_job_status(self, cloud_uri: str, cloud_project: str, job_id: str) -> Any
_remote_job = self.evaluation.info(
f"{cloud_uri}/project/{cloud_project}/evaluation/{job_id}"
)
return _remote_job["manifest"]["jobStatus"] if _remote_job else ""
return _remote_job["manifest"]["jobStatus"] if _remote_job else "API ERROR"

def test_mnist(self, mode: str) -> None:
_environment_prepare = EnvironmentPrepare(work_dir=self._work_dir)
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e_test/start_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ declare_env() {
}

start_minikube() {
minikube start -p sw-e2e-test --memory=4G --insecure-registry "$IP_MINIKUBE_BRIDGE_RANGE"
minikube start -p sw-e2e-test --memory=6G --insecure-registry "$IP_MINIKUBE_BRIDGE_RANGE"
minikube addons enable ingress -p sw-e2e-test
minikube addons enable ingress-dns -p sw-e2e-test
kubectl describe node
Expand Down