Skip to content

Commit

Permalink
fix version in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rasswanth-s committed Apr 3, 2024
1 parent ee0be5e commit 2a995f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions notebooks/api/0.8/10-container-images.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"outputs": [],
"source": [
"custom_dockerfile_str = \"\"\"\n",
"FROM openmined/grid-backend:0.8.5-beta.10\n",
"FROM openmined/grid-backend:0.8.5-post.2\n",
"\n",
"RUN pip install pydicom\n",
"\n",
Expand Down Expand Up @@ -1109,7 +1109,7 @@
"outputs": [],
"source": [
"custom_dockerfile_str_2 = \"\"\"\n",
"FROM openmined/grid-backend:0.8.5-beta.10\n",
"FROM openmined/grid-backend:0.8.5-post.2\n",
"\n",
"RUN pip install opendp\n",
"\"\"\".strip()\n",
Expand Down Expand Up @@ -1261,7 +1261,7 @@
"outputs": [],
"source": [
"custom_dockerfile_str_3 = \"\"\"\n",
"FROM openmined/grid-backend:0.8.5-beta.10\n",
"FROM openmined/grid-backend:0.8.5-post.2\n",
"\n",
"RUN pip install recordlinkage\n",
"\"\"\".strip()\n",
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/container_workload/pool_image_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_image_build(domain_1_port) -> None:
port=domain_1_port, email="[email protected]", password="changethis"
)

syft_base_tag = "0.8.5-beta.10" # {sy.__version__}
syft_base_tag = "0.8.5-post.2" # {sy.__version__}

# Submit Docker Worker Config
docker_config_rl = f"""
Expand Down Expand Up @@ -79,7 +79,7 @@ def test_pool_launch(domain_1_port) -> None:
)
# assert len(domain_client.worker_pools.get_all()) == 1

syft_base_tag = "0.8.5-beta.10" # {sy.__version__}
syft_base_tag = "0.8.5-post.2" # {sy.__version__}

# Submit Docker Worker Config
docker_config_opendp = f"""
Expand Down Expand Up @@ -181,7 +181,7 @@ def test_pool_image_creation_job_requests(domain_1_port) -> None:
assert isinstance(res, SyftSuccess)
ds_client = sy.login(email=ds_email, password="secret_pw", port=domain_1_port)

syft_base_tag = "0.8.5-beta.10" # {sy.__version__}
syft_base_tag = "0.8.5-post.2" # {sy.__version__}

# the DS makes a request to create an image and a pool based on the image

Expand Down

0 comments on commit 2a995f0

Please sign in to comment.