Skip to content

lint fixes

lint fixes #2

Workflow file for this run

---
name: Unit Test
on:
push:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/test.yml'
- 'requirements_test.txt'
- '.pytest.ini'
pull_request:
branches: [latest]
paths:
- '**.py'
- '**.yml'
- '.github/workflows/test.yml'
- 'requirements_test.txt'
- '.pytest.ini'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 3
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements_test.txt >/dev/null
pip install -r requirements.txt >/dev/null
- name: Running Unit Tests
run: |
pytest --version
python3 -m pytest -c .pytest.ini src/tests/unit/