Spaces:
Build error
Build error
import pytest | |
from .helpers.helpers import request_with_validation | |
def test_k8s_health(endpoint): | |
response = request_with_validation( | |
api=endpoint, | |
method="GET", | |
) | |
assert response.ok | |
assert response.text == "healthz check passed" | |
def test_k8s_ready(endpoint): | |
response = request_with_validation( | |
api=endpoint, | |
method="GET", | |
) | |
assert response.ok | |
assert response.text == "all shards are ready" | |