<?xml version="1.0" encoding="utf-8"?><testsuites name="pytest tests"><testsuite name="pytest" errors="5" failures="0" skipped="0" tests="18" time="11.640" timestamp="2026-07-06T20:24:43.940547+00:00" hostname="maas-group-test-94d6m-e2e-maas-openshift-pod"><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_create_api_key" time="0.139" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_list_api_keys" time="0.175" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_revoke_api_key" time="0.124" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyAuthorization" name="test_admin_manage_other_users_keys" time="0.168" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyAuthorization" name="test_non_admin_cannot_access_other_users_keys" time="0.122" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_own_keys" time="0.334" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_other_user_forbidden" time="0.041" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_admin_can_revoke_any_user" time="0.118" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_within_expiration_limit" time="0.040" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_at_expiration_limit" time="0.041" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_exceeds_expiration_limit" time="0.042" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_without_expiration" time="0.041" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_with_short_expiration" time="0.040" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_api_key_model_access_success" time="9.556"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InRmX2dVTzAtb2VTb1ZVSEI5T0J0UloteFVEMXNYN3pPRldNbWN1RElLZkEifQ.e...DVmYumMXDYjsSK-p5_1Bt9ymJz3HBDMAbySe7SjinrlggfTpzsE302KRO730vC12lRx4aro2zjW5wYvvQ', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:141: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_invalid_api_key_rejected" time="0.000"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InRmX2dVTzAtb2VTb1ZVSEI5T0J0UloteFVEMXNYN3pPRldNbWN1RElLZkEifQ.e...DVmYumMXDYjsSK-p5_1Bt9ymJz3HBDMAbySe7SjinrlggfTpzsE302KRO730vC12lRx4aro2zjW5wYvvQ', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:141: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_no_auth_header_rejected" time="0.000"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InRmX2dVTzAtb2VTb1ZVSEI5T0J0UloteFVEMXNYN3pPRldNbWN1RElLZkEifQ.e...DVmYumMXDYjsSK-p5_1Bt9ymJz3HBDMAbySe7SjinrlggfTpzsE302KRO730vC12lRx4aro2zjW5wYvvQ', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:141: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_revoked_api_key_rejected" time="0.000"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InRmX2dVTzAtb2VTb1ZVSEI5T0J0UloteFVEMXNYN3pPRldNbWN1RElLZkEifQ.e...DVmYumMXDYjsSK-p5_1Bt9ymJz3HBDMAbySe7SjinrlggfTpzsE302KRO730vC12lRx4aro2zjW5wYvvQ', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:141: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_api_key_chat_completions" time="0.001"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InRmX2dVTzAtb2VTb1ZVSEI5T0J0UloteFVEMXNYN3pPRldNbWN1RElLZkEifQ.e...DVmYumMXDYjsSK-p5_1Bt9ymJz3HBDMAbySe7SjinrlggfTpzsE302KRO730vC12lRx4aro2zjW5wYvvQ', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:141: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.39aabefc-cf75-4edf-9807-295598570635.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase></testsuite></testsuites>