Skip to content

Fix argument error in nightly unit tests #130

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

Closed
wants to merge 2 commits into from
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
14 changes: 10 additions & 4 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,14 @@ jobs:
if-no-files-found: error
retention-days: 30
- name: Comment Install instructions
uses: mshick/add-pr-comment@v2
uses: actions/github-script@v7
with:
message: |
Build artifacts (.whl and .tar.gz) are available for download for up to 30 days.
They are located at ${{ steps.artifact-upload.outputs.artifact-url }}
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `Build artifacts (.whl and .tar.gz) are available for download for up to 30 days.
They are located at ${{ steps.artifact-upload.outputs.artifact-url }}`
})
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: pip install tox
- name: Run unit tests
run: tox -e test-unit -- -m --cov=guidellm --cov-report=term-missing --cov-fail-under=75
run: tox -e test-unit -- --cov=guidellm --cov-report=term-missing --cov-fail-under=75

integration-tests:
runs-on: ubuntu-latest
Expand Down
Loading