python: Format trivial files where only newlines were missing
Apply formatting on files that only needed adding newlines. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
This commit is contained in:
parent
9a804572a3
commit
f05deb1aa4
24 changed files with 63 additions and 24 deletions
|
@ -6,20 +6,26 @@
|
|||
|
||||
import pytest
|
||||
|
||||
|
||||
def pytest_addoption(parser):
|
||||
parser.addoption('--gdb_target_remote')
|
||||
parser.addoption('--gdb_timeout')
|
||||
parser.addoption('--gdb_script')
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def gdb_script(request):
|
||||
return request.config.getoption('--gdb_script')
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def gdb_timeout(request):
|
||||
return int(request.config.getoption('--gdb_timeout', default=60))
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def gdb_target_remote(request):
|
||||
return request.config.getoption('--gdb_target_remote', default=":5678")
|
||||
|
||||
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue