Skip to content

Commit

Permalink
Add to flake8 in workflow and fix python files (#25283)
Browse files Browse the repository at this point in the history
  • Loading branch information
DamMicSzm authored Feb 28, 2023
1 parent 2bfd573 commit 74a1f14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ exclude = third_party
src/test_driver/mbed/*
src/test_driver/linux-cirque/*
src/test_driver/esp32/*
src/test_driver/efr32/*
build/chip/java/tests/*
build/chip/linux/*
build/config/linux/*
Expand All @@ -28,7 +27,6 @@ exclude = third_party
scripts/build/builders/android.py
scripts/build/builders/bouffalolab.py
scripts/build/builders/cc13x2x7_26x2x7.py
scripts/build/builders/efr32.py
scripts/build/builders/esp32.py
scripts/build/builders/genio.py
scripts/build/builders/gn.py
Expand Down
9 changes: 5 additions & 4 deletions scripts/build/builders/efr32.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,16 @@ def __init__(self,
if chip_build_libshell:
self.extra_gn_options.append('chip_build_libshell=true')

if chip_logging == False:
if chip_logging is False:
self.extra_gn_options.append('chip_logging=false')

if chip_openthread_ftd == False:
if chip_openthread_ftd is False:
self.extra_gn_options.append('chip_openthread_ftd=false')

if enable_heap_monitoring:
self.extra_gn_options.append('enable_heap_monitoring=true')

if enable_openthread_cli == False:
if enable_openthread_cli is False:
self.extra_gn_options.append('enable_openthread_cli=false')

if show_qr_code:
Expand Down Expand Up @@ -208,7 +208,8 @@ def __init__(self,

if enable_ot_coap_lib:
self.extra_gn_options.append(
'use_silabs_thread_lib=true chip_openthread_target="../silabs:ot-efr32-cert" use_thread_coap_lib=true openthread_external_platform=""')
'use_silabs_thread_lib=true chip_openthread_target="../silabs:ot-efr32-cert" '
'use_thread_coap_lib=true openthread_external_platform=""')

if not no_version:
shortCommitSha = subprocess.check_output(
Expand Down
2 changes: 1 addition & 1 deletion src/test_driver/efr32/py/nl_test_runner/nl_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def read(): return serial_device.read(8192)
def runner(client) -> int:
""" Run the tests"""
def on_error_callback(call_object, error):
raise Exception("Error running test RPC: {}".format(status))
raise Exception("Error running test RPC: {}".format(error))

rpc = client.client.channel(1).rpcs.chip.rpc.NlTest.Run
invoke = rpc.invoke(rpc.request(), on_error=on_error_callback)
Expand Down

0 comments on commit 74a1f14

Please sign in to comment.