Skip to content

fixed

fixed #9

Workflow file for this run

name: Test RESTless API
on:
push:
branches: [dev]
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install setup
run: make setup
- name: start application locally
run: |
make serve-bg
sleep 5
- name: run tests
run: pytest -vk test_unauth
- name: stop background process
run: kill $(lsof -t -i:8000)