Skip to content

fix(lint): resolve lint issues in test_consolidate_results.py #157

fix(lint): resolve lint issues in test_consolidate_results.py

fix(lint): resolve lint issues in test_consolidate_results.py #157

Workflow file for this run

name: Tests
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: pytest tests/ -v