Skip to content

Commit 4f77eee

Browse files
add ref to integ test
1 parent 86011d4 commit 4f77eee

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/integration_tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ on:
1414
required: true
1515
type: string
1616
default: "['3.10', '3.11', '3.12']"
17+
ref:
18+
description: "(Optional) ref to checkout"
19+
required: false
20+
type: string
1721

1822
env:
1923
POETRY_VERSION: "1.8.2"

.github/workflows/nightly_build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
uses: ./.github/workflows/typescript_test.yml
6868
with:
6969
tests_folder: "tests/end-to-end"
70-
ref: ${{ needs.create-nightly-tag.outputs.TAG }} # TODO: DD this to typescript
70+
ref: ${{ needs.create-nightly-tag.outputs.TAG }}
7171
secrets:
7272
OPENAI_API_KEY: "${{ secrets.OPENAI_API_KEY }}"
7373
STORE_API_KEY: "${{ secrets.STORE_API_KEY }}"
@@ -78,16 +78,15 @@ jobs:
7878
uses: ./.github/workflows/python_test.yml
7979
with:
8080
python-versions: '["3.10", "3.11", "3.12"]'
81-
ref: ${{ needs.create-nightly-tag.outputs.TAG }} # TODO: DD this to typescript
81+
ref: ${{ needs.create-nightly-tag.outputs.TAG }}
8282

8383
backend-integration-tests:
8484
name: Run Backend Integration Tests
8585
needs: create-nightly-tag
8686
uses: ./.github/workflows/integration_tests.yml
8787
with:
8888
python-versions: '["3.10", "3.11", "3.12"]'
89-
ref: ${{ needs.create-nightly-tag.outputs.TAG }} # TODO: DD this to typescript
90-
89+
ref: ${{ needs.create-nightly-tag.outputs.TAG }}
9190

9291
# release-nightly-build:
9392
# name: Run Nightly Langflow Build

0 commit comments

Comments
 (0)