diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 389924c5..294a2f3e 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 d6a83b50..86f6b42f 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