Skip to content

test: updates test cases for funder.json endpoint #68

test: updates test cases for funder.json endpoint

test: updates test cases for funder.json endpoint #68

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.12.3
architecture: x64
- run: pip install -r requirements.txt
- run: pip install -r requirements_dev.txt
- run: ./registry/manage.py makemigrations --dry-run --check
- run: ./registry/manage.py migrate
- run: ./registry/manage.py test -v 3 tests
#- run: coverage run --source='./registry' ./registry/manage.py test -v 3 tests
# - env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: coveralls --service=github