Skip to content

new version 2.5.0

new version 2.5.0 #153

Workflow file for this run

name: Dev-Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- '*'
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
# 3.13 not available yet somehow
# 3.7 has issues with multiline expressions
# 3.6- not found for ubuntu-latest
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest-cov ipython notebook==6.2.0
- name: Checkout code
uses: actions/checkout@v2
- name: Lint with flake8
run: |
flake8 traceback_with_variables --count --show-source --statistics --max-line-length=127
- name: Test with pytest
run: |
python -m pytest -vv --cov=traceback_with_variables --cov-report=json
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
path: coverage.json
coverage:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download all coverage reports
uses: actions/download-artifact@v4
with:
path: coverage-reports
- name: Check coverage
run: python3 check_coverage_reports.py --inp-dir coverage-reports --max-allowed-num-uncovered-lines 0