Skip to content

change debug-output from warning to info #8

change debug-output from warning to info

change debug-output from warning to info #8

Workflow file for this run

---
name: Unit Test
on:
push:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/unit_test.yml'
- 'requirements_test.txt'
- 'pytest.ini'
- '.coveragerc'
pull_request:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/unit_test.yml'
- 'requirements_test.txt'
- 'pytest.ini'
- '.coveragerc'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 3
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v5
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- 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
pytest -c pytest.ini --cov
env:
PYTHONUNBUFFERED: 1