Skip to content

fix: don't send lb warn earliest if autorunner is true #140

fix: don't send lb warn earliest if autorunner is true

fix: don't send lb warn earliest if autorunner is true #140

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
prisma generate
- name: Test with pytest
run: |
pip install pytest
python -m pytest tests --doctest-modules --junitxml=junit/test-results.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
name: pytest-results
path: junit/test-results.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}