print out llm response #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mistral Integration Tests | |
on: | |
push: | |
branches: [ main, integration-tests-main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: a100-40gb-runner | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest docker requests | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up environment variables | |
run: | | |
echo "HUGGING_FACE_HUB_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }}" >> $GITHUB_ENV | |
- name: Create data directory | |
run: | | |
mkdir -p integration-tests-2/data | |
- name: Run Mistral tests | |
run: | | |
cd integration-tests-2 | |
pytest test_base_mistral.py -v | |
# - name: Cleanup Docker containers | |
# if: always() | |
# run: | | |
# docker ps -q | xargs -r docker stop | |
# docker ps -aq | xargs -r docker rm |