From 1c6d849111296009c9ee29eabbe10a8e1036e7df Mon Sep 17 00:00:00 2001 From: Dean Schmigelski Date: Thu, 12 Jun 2025 19:47:55 +0300 Subject: [PATCH] fix: add inference profile to litellm test and remove ownership check in workflow --- .github/workflows/integration-test.yml | 8 +------- tests-integ/test_model_litellm.py | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 389924c55..294a2f3ea 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -26,13 +26,7 @@ jobs: return } - const isOwner = pr.author_association === 'OWNER' - if (isOwner) { - core.info('PR author is an OWNER') - return - } - - core.setFailed('Pull Request must either have label approved-for-integ-test or be created by an owner') + core.setFailed('Pull Request must either have label approved-for-integ-test') - name: Configure Credentials uses: aws-actions/configure-aws-credentials@v4 with: diff --git a/tests-integ/test_model_litellm.py b/tests-integ/test_model_litellm.py index d6a83b503..86f6b42f1 100644 --- a/tests-integ/test_model_litellm.py +++ b/tests-integ/test_model_litellm.py @@ -7,7 +7,7 @@ @pytest.fixture def model(): - return LiteLLMModel(model_id="bedrock/anthropic.claude-3-7-sonnet-20250219-v1:0") + return LiteLLMModel(model_id="bedrock/us.anthropic.claude-3-7-sonnet-20250219-v1:0") @pytest.fixture