Skip to content

split requirements into streamlit and dev environments #14

split requirements into streamlit and dev environments

split requirements into streamlit and dev environments #14

Workflow file for this run

name: tests
on:
push:
branches: ["master", "main"]
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 --upgrade pip
pip install -r requirements.txt
pip install -e . --no-deps
- name: run tests
run: python -m pytest tests/ -v --tb=short