Skip to content

Add banner screenshot to README (#12) #15

Add banner screenshot to README (#12)

Add banner screenshot to README (#12) #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-backend:
name: Backend & Analysis Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
cache: pip
cache-dependency-path: requirements.txt
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m pytest tests/backend/ tests/analysis/ -v -p no:django
test-frontend:
name: Frontend (Django) Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
cache: pip
cache-dependency-path: environment/frontend_server/requirements.txt
- name: Install dependencies
run: pip install -r environment/frontend_server/requirements.txt
- name: Run tests
run: python -m pytest tests/frontend/ -v
env:
DJANGO_SETTINGS_MODULE: frontend_server.settings.base
PYTHONPATH: reverie/backend_server:environment/frontend_server:analysis