1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Description: Disable pyocd plugin
python-mbed-host-tests 1.4.4 requires pyocd 0.14.0 which is not yet available
in Debian, so disable the pyocd plugin until this is resolved
Author: Nick Morrott <knowledgejunkie@gmail.com>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917515
Last-Update: 2018-12-28
---
--- a/mbed_host_tests/host_tests_plugins/__init__.py
+++ b/mbed_host_tests/host_tests_plugins/__init__.py
@@ -31,8 +31,6 @@
from . import module_copy_mbed
from . import module_reset_mbed
from . import module_power_cycle_mbed
-from . import module_copy_pyocd
-from . import module_reset_pyocd
# Additional, non standard platforms
from . import module_copy_silabs
@@ -55,7 +53,6 @@
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_mbed.load_plugin())
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_shell.load_plugin())
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_reset_mbed.load_plugin())
-HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_pyocd.load_plugin())
# Extra platforms support
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_mps2.load_plugin())
@@ -65,7 +62,6 @@
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_stlink.load_plugin())
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_reset_stlink.load_plugin())
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_power_cycle_mbed.load_plugin())
-HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_reset_pyocd.load_plugin())
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_reset_ublox.load_plugin())
HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_ublox.load_plugin())
#HOST_TEST_PLUGIN_REGISTRY.register_plugin(module_copy_jn51xx.load_plugin())
--- a/setup.py
+++ b/setup.py
@@ -58,6 +58,5 @@
"PrettyTable>=0.7.2",
"requests",
"mbed-ls>=1.0.0",
- "pyocd>=0.14.0",
"intelhex",
"future"])
|