Skip to content

fixed a test for updated endpoint #18

fixed a test for updated endpoint

fixed a test for updated endpoint #18

Workflow file for this run

name: Run tests after commit
on: [push]
jobs:
run-tests:
name: Run tests after commit
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest