Skip to content
Merged

a #5

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ jobs:
cache-dependency-path: backend/requirements.txt

- name: Install backend dependencies
working-directory: backend
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
pip install -r requirements.txt

- name: Run backend tests
run: pytest -q backend/tests
working-directory: backend
run: python -m pytest -q tests