Skip to content

fix flake8

fix flake8 #6

Workflow file for this run

name: Python package
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r requirements_test.txt
- name: Run Linter
run: python -m flake8
- name: Run Vulture
run: python -m vulture
- name: Run tests
run: |
python -m pytest --cov=formation_indus_ds_avancee/ tests/test_unit/ -vv -p no:warnings
python -m behave tests/test_functional/features