mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-19 01:33:52 +08:00
* Added pyflakes and Pylint for python * Actually run linter in CI * some simple pyflakes changes * Add flake8 to panda reqs for linter test * flake8 errors are fixed * run flake8 in regression tests * meant to run flake8 * hack to ignore unused import * bug * fix bugs in tucan_loopback * Another fix by using set_safety_mode * added pylintrc file * more fixes and enabled pylint as well * Fix pylint in circleci * added linter to readme
12 lines
228 B
Python
12 lines
228 B
Python
from .helpers import test_all_pandas, panda_connect_and_init
|
|
|
|
@test_all_pandas
|
|
@panda_connect_and_init
|
|
def test_recover(p):
|
|
assert p.recover(timeout=30)
|
|
|
|
@test_all_pandas
|
|
@panda_connect_and_init
|
|
def test_flash(p):
|
|
p.flash()
|