Skip to content

feat: graceful shutdown; logging fix; small image-90MB #120

feat: graceful shutdown; logging fix; small image-90MB

feat: graceful shutdown; logging fix; small image-90MB #120

Workflow file for this run

name: vLEI
on:
push:
branches:
- main
- dev
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: |
pytest
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12.2
uses: actions/setup-python@v5
with:
python-version: 3.12.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov codecov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run core vLEI tests
run: |
pytest --cov=./ --cov-report=xml
codecov