Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/py.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, windows-latest]
shard: [0, 1]
shard: [0, 1, 2, 3]

steps:
- uses: actions/checkout@v4
Expand All @@ -41,10 +41,10 @@ jobs:
- name: Test whether the Python SDK can be imported
run: |
python -c 'import braintrust'
- name: Run nox tests (shard ${{ matrix.shard }}/2)
- name: Run nox tests (shard ${{ matrix.shard }}/4)
shell: bash
run: |
cd py && ./scripts/nox-matrix.sh ${{ matrix.shard }} 2
cd py && ./scripts/nox-matrix.sh ${{ matrix.shard }} 4

adk-py:
uses: ./.github/workflows/adk-py-test.yaml
Expand Down
Loading