Skip to content

Update test_restful.py #126

Update test_restful.py

Update test_restful.py #126

Workflow file for this run

name: Backend CI
on:
push:
paths:
- 'backend/**'
pull_request:
paths:
- 'backend/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install Python dependencies
run: |
cd backend
pip install -r requirements.txt
- name: Run backend tests
run: |
cd backend
pytest