name: Run chatbot test on: push: pull_request: jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install dependencies run: | pip install pytest gradio[oauth] huggingface_hub - name: Run pytest with HF token env: HF_TOKEN: ${{ secrets.Smart_Confidant_Token }} run: pytest -q