Skip to content

chore: Ignore deprecation warnings from pkg_resources #3639

chore: Ignore deprecation warnings from pkg_resources

chore: Ignore deprecation warnings from pkg_resources #3639

Workflow file for this run

# This workflow will install Python dependencies, lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: flake8
on:
push:
branches:
- develop
- stable
pull_request:
branches:
- develop
- stable
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Lint with flake8
run: |
python -m pip install --upgrade pip
pip install flake8
flake8 --count --max-line-length=127 --statistics mslib tests