1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tools/flake8: ignore pythonlibs/riotctrl_* directories

They are already covered by flake8 with their tox configuration
This commit is contained in:
Alexandre Abadie 2021-09-29 15:43:40 +02:00
parent b44652c489
commit 2e7c83f374
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -30,8 +30,9 @@ EXCLUDE="^(.+/vendor/\
|dist/tools/mcuboot\
|dist/tools/uhcpd\
|dist/tools/stm32loader\
|dist/tools/suit/suit-manifest-generator)\
|dist/tools/esptool"
|dist/tools/suit/suit-manifest-generator\
|dist/tools/esptool\
|dist/pythonlibs/riotctrl_*)"
FILEREGEX='(\.py$|pyterm$)'
FILES=$(FILEREGEX=${FILEREGEX} EXCLUDE=${EXCLUDE} changed_files)