travis: fixed pep8 code style issues in python support script
This commit is contained in:
parent
0f0f291dde
commit
e9e9a1c01c
9
dist/tools/travis-scripts/get-pkg-list.py
vendored
9
dist/tools/travis-scripts/get-pkg-list.py
vendored
@ -25,17 +25,18 @@ msp_mcu_groups = ["msp430"]
|
||||
x86_mcu_groups = ["x86"]
|
||||
avr8_mcu_groups = ["avr8"]
|
||||
static_tests_groups = ["static-tests"]
|
||||
known_mcu_groups = arm_mcu_groups + msp_mcu_groups + x86_mcu_groups + avr8_mcu_groups + \
|
||||
static_tests_groups
|
||||
known_mcu_groups = arm_mcu_groups + msp_mcu_groups + x86_mcu_groups + \
|
||||
avr8_mcu_groups + static_tests_groups
|
||||
|
||||
common_pkgs = ["pcregrep", "libpcre3", "python3"]
|
||||
arm_pkgs = ["gcc-arm-none-eabi"]
|
||||
msp_pkgs = ["gcc-msp430"]
|
||||
x86_pkgs = ["qemu-system-x86", "g++-multilib", "gcc-multilib", \
|
||||
x86_pkgs = ["qemu-system-x86", "g++-multilib", "gcc-multilib",
|
||||
"build-essential"]
|
||||
avr8_pkgs = ["gcc-avr", "binutils-avr", "avr-libc"]
|
||||
static_tests_pkgs = ["doxygen", "cppcheck"]
|
||||
all_mcu_pkgs = arm_pkgs + msp_pkgs + x86_pkgs + avr8_pkgs + static_tests_pkgs
|
||||
all_mcu_pkgs = arm_pkgs + msp_pkgs + \
|
||||
x86_pkgs + avr8_pkgs + static_tests_pkgs
|
||||
|
||||
|
||||
pkgs_to_install = common_pkgs
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user