Skip to content

create dev dependencies file #6

create dev dependencies file

create dev dependencies file #6

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.x"
cache: 'pip'
- name: Install python test dependencies
run: |
pip install .[test]
- name: Test with pytest
run: |
pytest ./tests/