test_runner: replace yapf with black and isort

This commit is contained in:
Alexander Bayandin
2022-08-17 15:05:37 +01:00
committed by Alexander Bayandin
parent 277f2d6d3d
commit 6b2e1d9065
7 changed files with 496 additions and 409 deletions

View File

@@ -128,8 +128,11 @@ jobs:
- name: Install Python deps
run: ./scripts/pysync
- name: Run yapf to ensure code format
run: poetry run yapf --recursive --diff .
- name: Run isort to ensure code format
run: poetry run isort --diff --check .
- name: Run black to ensure code format
run: poetry run black --diff --check .
- name: Run mypy to check types
run: poetry run mypy .