Skip to content

allow followups to molmo prompts (#230) #8

allow followups to molmo prompts (#230)

allow followups to molmo prompts (#230) #8

Workflow file for this run

concurrency:
group: unit-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest --ignore e2e --ignore src/attribution