Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ def test_private_inference_graph_serverless_deployment(self, dog_breed_inference
use_default_query=True,
)

@pytest.mark.smoke
@pytest.mark.parametrize(
"dog_breed_inference_graph",
[{"name": "dog-breed-auth-serverless-ig", "enable-auth": True}],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def test_private_inference_graph_raw_deployment(self, dog_breed_inference_graph)
insecure=True,
)

@pytest.mark.smoke
@pytest.mark.parametrize(
"dog_breed_inference_graph",
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
{
# Using mnist-8-1 model from OCI image
"storage-uri": "oci://quay.io/mwaykole/test@sha256:8a3217bcfa2cc5fa3d07496cff8b234acdf2c9725dd307dc0a80401f55e1a11c" # noqa: E501
"storage-uri": "oci://quay.io/mwaykole/test@sha256:1ade1f750278d20f229cd4d7a10f1b5bf29755a62486fec043eb62a94ec8ab88" # noqa: E501
},
)
],
Expand Down
2 changes: 1 addition & 1 deletion utilities/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class RunTimeConfigs:

class ModelCarImage:
MNIST_8_1: str = (
"oci://quay.io/mwaykole/test@sha256:8a3217bcfa2cc5fa3d07496cff8b234acdf2c9725dd307dc0a80401f55e1a11c" # noqa: E501
"oci://quay.io/mwaykole/test@sha256:1ade1f750278d20f229cd4d7a10f1b5bf29755a62486fec043eb62a94ec8ab88" # noqa: E501
)


Expand Down