Skip to content

flake8 fix

flake8 fix #565

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: macos-latest
python-version: '3.10'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (Mac)
if: matrix.os == 'macos-latest'
run: |
brew install swig
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage pytest-cov flake8 setuptools pep8-naming
- name: Test
run: |
# Test with Python tokenizer
py.test --cov=ihm --cov-branch -v .
CFLAGS="-coverage" python setup.py build_ext --inplace -t build
# Test with C tokenizer
py.test --cov=ihm --cov-branch --cov-report=xml --cov-append -v .
flake8 --ignore E402,W503,W504,N816
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}