Skip to content

registry update fixes #30

registry update fixes

registry update fixes #30

Workflow file for this run

name: Unit tests
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python for testing
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
- name: Install python test dependencies
run: |
pip install -r ./requirements.txt -r ./tests/requirements.txt
- name: Test with pytest
run: |
pytest ./tests/