From 10f972c8ce3df9f90447cd9fd9c0bca610ecac22 Mon Sep 17 00:00:00 2001 From: Titus <9048635+Titus-von-Koeller@users.noreply.github.com> Date: Thu, 2 May 2024 12:12:16 +0200 Subject: [PATCH] tests-pr.yml: fixes --- .github/workflows/tests-pr.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-pr.yml b/.github/workflows/tests-pr.yml index 1acc29d0a..e28fab285 100644 --- a/.github/workflows/tests-pr.yml +++ b/.github/workflows/tests-pr.yml @@ -40,7 +40,9 @@ jobs: pip install ".[test]" - name: Show bitsandbytes and its versions - run: pip freeze | grep bitsandbytes + run: | + source activate peft + pip freeze | grep bitsandbytes - name: Run core tests on single GPU id: tests @@ -56,4 +58,4 @@ jobs: slack_channel: ${{ env.OUTPUT_SLACK_CHANNEL_ID }} title: 🤗 Results of the bitsandbytes tests status: ${{ steps.tests.conclusion}} - slack_token: ${{ secrets.CI_SLACK_BOT_TOKEN }} + slack_token: ${{ secrets.SLACK_API_TOKEN }}