removed references for excluding utm.py as it is no longer present
This commit is contained in:
parent
873fc0e468
commit
fdd2e6f1f1
3 changed files with 4 additions and 4 deletions
2
.github/workflows/daemon-checks.yml
vendored
2
.github/workflows/daemon-checks.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
||||||
- name: black
|
- name: black
|
||||||
run: |
|
run: |
|
||||||
cd daemon
|
cd daemon
|
||||||
poetry run black --check --exclude ".+_pb2.*.py|doc|build|utm\.py|setup\.py" .
|
poetry run black --check --exclude ".+_pb2.*.py|doc|build" .
|
||||||
- name: flake8
|
- name: flake8
|
||||||
run: |
|
run: |
|
||||||
cd daemon
|
cd daemon
|
||||||
|
|
|
@ -12,7 +12,7 @@ repos:
|
||||||
name: black
|
name: black
|
||||||
stages: [commit]
|
stages: [commit]
|
||||||
language: system
|
language: system
|
||||||
entry: bash -c 'cd daemon && poetry run black --exclude ".+_pb2.*.py|doc|build|utm\.py" .'
|
entry: bash -c 'cd daemon && poetry run black --exclude ".+_pb2.*.py|doc|build" .'
|
||||||
types: [python]
|
types: [python]
|
||||||
|
|
||||||
- id: flake8
|
- id: flake8
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
test=pytest
|
test=pytest
|
||||||
|
|
||||||
[isort]
|
[isort]
|
||||||
skip_glob=*_pb2*.py,utm.py,doc,build
|
skip_glob=*_pb2*.py,doc,build
|
||||||
multi_line_output=3
|
multi_line_output=3
|
||||||
include_trailing_comma=True
|
include_trailing_comma=True
|
||||||
force_grid_wrap=0
|
force_grid_wrap=0
|
||||||
|
@ -14,7 +14,7 @@ ignore=E501,W503,E203
|
||||||
max-line-length=88
|
max-line-length=88
|
||||||
max-complexity=26
|
max-complexity=26
|
||||||
select=B,C,E,F,W,T4
|
select=B,C,E,F,W,T4
|
||||||
exclude=*_pb2*.py,utm.py,doc,build
|
exclude=*_pb2*.py,doc,build
|
||||||
|
|
||||||
[tool:pytest]
|
[tool:pytest]
|
||||||
norecursedirs=distributed emane
|
norecursedirs=distributed emane
|
||||||
|
|
Loading…
Reference in a new issue