Skip to content

Commit e08d598

Browse files
authored
ci[patch]: Set fail-fast to false in standard tests & update standard int test command (#6002)
* ci[patch]: Set fail-fast to false in standard tests * fix matrix run int tests
1 parent cd54246 commit e08d598

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/standard-tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
standard-tests:
1010
runs-on: ubuntu-latest
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
package: [anthropic, cohere, google-genai, groq, mistralai]
1415
steps:
@@ -21,7 +22,7 @@ jobs:
2122
- name: Install dependencies
2223
run: yarn install --immutable --mode=skip-build
2324
- name: Run integration tests for ${{ matrix.package }}
24-
run: yarn test:int --filter=@langchain/${{ matrix.package }}
25+
run: yarn turbo test:integration --filter=@langchain/${{ matrix.package }}
2526
env:
2627
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
2728
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}

turbo.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,12 @@
2929
"test:single": {
3030
"dependsOn": ["^build", "build"]
3131
},
32-
"test:integration": {
32+
"test:int": {
3333
"dependsOn": ["^build", "build"]
3434
},
35+
"test:integration": {
36+
"dependsOn": ["^build", "build", "test:int"]
37+
},
3538
"test:standard:unit": {
3639
"outputs": [],
3740
"dependsOn": ["^build"]

0 commit comments

Comments
 (0)