Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INTPYTHON-454 Clean up release output #41

Merged
merged 2 commits into from
Dec 16, 2024
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,15 @@ jobs:

- name: Create Release
uses: ncipollo/release-action@v1
id: create-release
with:
artifacts: "dist/*"
artifacts: "${{ inputs.working-directory }}/dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
generateReleaseNotes: true
tag: ${{ inputs.working-directory }}/v${{ needs.build.outputs.version }}
commit: main

- name: Add github release url to summary
run: |
echo "GitHub Release: ${{ steps.create-release.outputs.html_url }}" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def test_1clxn_retriever(
responses = retriever.invoke(question)

if not os.environ.get("OPENAI_API_KEY"):
assert len(responses) == 1
assert responses[0].metadata["page"] == 99
assert len(responses) >= 1
assert isinstance(responses[0].metadata["page"], int)
return

assert len(responses) == 3
Expand Down
Loading