Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,18 @@ jobs:
run: |
hatch test tests_integ

- name: Checkout main to run upload
if: always()
uses: actions/checkout@v6
with:
ref: main
path: ${{ runner.temp }}
sparse-checkout: |
.github/scripts
persist-credentials: false # Don't persist credentials for subsequent actions

- name: Publish test metrics to CloudWatch
if: always()
run: |
pip install --no-cache-dir boto3
python .github/scripts/upload-integ-test-metrics.py ./build/test-results.xml ${{ github.event.repository.name }}
python ${{ runner.temp }}/.github/scripts/upload-integ-test-metrics.py ./build/test-results.xml ${{ github.event.repository.name }}
1 change: 0 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Strands Agents is an open-source Python SDK for building AI agents with a model-
```
strands-agents/
├── src/strands/ # Main package source code
│ ├── agent/ # Core agent implementation
│ │ ├── agent.py # Main Agent class
│ │ ├── agent_result.py # Agent execution results
Expand Down
Loading