8000 fix: add inference profile to litellm test and remove ownership check… · random-user-pr/sdk-python1@7c5f7a7 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 7c5f7a7

Browse files
fix: add inference profile to litellm test and remove ownership check in workflow (strands-agents#209)
1 parent 4b44410 commit 7c5f7a7

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/integration-test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,7 @@ jobs:
2626
return
2727
}
2828
29-
const isOwner = pr.author_association === 'OWNER'
30-
if (isOwner) {
31-
core.info('PR author is an OWNER')
32-
return
33-
}
34-
35-
core.setFailed('Pull Request must either have label approved-for-integ-test or be created by an owner')
29+
core.setFailed('Pull Request must either have label approved-for-integ-test')
3630
- name: Configure Credentials
3731
uses: aws-actions/configure-aws-credentials@v4
3832
with:

tests-integ/test_model_litellm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
@pytest.fixture
99
def model():
10-
return LiteLLMModel(model_id="bedrock/anthropic.claude-3-7-sonnet-20250219-v1:0")
10+
return LiteLLMModel(model_id="bedrock/us.anthropic.claude-3-7-sonnet-20250219-v1:0")
1111

1212

1313
@pytest.fixture

0 commit comments

Comments
 (0)
0