File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 1101
1101
" I001" , # https://docs.astral.sh/ruff/rules/unsorted-imports
1102
1102
" SIM115" , # https://docs.astral.sh/ruff/rules/open-file-with-context-handler
1103
1103
]
1104
- "./scripts/west_commands/robot.py" = [
1105
- " I001" , # https://docs.astral.sh/ruff/rules/unsorted-imports
1106
- " UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1107
- ]
1108
1104
"./scripts/west_commands/run_common.py" = [
1109
1105
" B904" , # https://docs.astral.sh/ruff/rules/raise-without-from-inside-except
1110
1106
" B905" , # https://docs.astral.sh/ruff/rules/zip-without-explicit-strict
Original file line number Diff line number Diff line change 2
2
#
3
3
# SPDX-License-Identifier: Apache-2.0
4
4
5
- from west .commands import WestCommand
6
5
from run_common import add_parser_common , do_run_common
6
+ from west .commands import WestCommand
7
7
8
8
EXPORT_DESCRIPTION = '''\
9
9
Run RobotFramework test suites with a runner of choice.
13
13
class Robot (WestCommand ):
14
14
15
15
def __init__ (self ):
16
- super (Robot , self ).__init__ (
16
+ super ().__init__ (
17
17
'robot' ,
18
18
# Keep this in sync with the string in west-commands.yml.
19
19
'run RobotFramework test suites' ,
You can’t perform that action at this time.
0 commit comments