Skip to content

feat: ale fixer using ruff #82

feat: ale fixer using ruff

feat: ale fixer using ruff #82

Workflow file for this run

name: pythontests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pytest:
name: pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: abatilo/actions-poetry@v2.1.0
with:
poetry-version: 1.4.2
- name: Install
run: poetry install
working-directory: ./python3
- name: Run pytest
run: poetry run coverage run --omit='./nayvy_vim_if/*,./tests/**/*' --source=. -m pytest -vv --durations=10
working-directory: ./python3