-
-
Notifications
You must be signed in to change notification settings - Fork 799
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
25 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule docs
updated
20 files
+0 −3 | boards/freescalekinetis/frdm_kw24d.rst | |
+0 −36 | boards/index.rst | |
+0 −3 | boards/nxplpc/lpc11u68.rst | |
+0 −3 | boards/siliconlabsefm32/efm32hg_stk3400.rst | |
+0 −3 | boards/siliconlabsefm32/efm32wg_stk3800.rst | |
+15 −11 | core/installation/methods/installer-script.rst | |
+11 −6 | core/installation/methods/pypi.rst | |
+1 −1 | core/installation/proxy-configuration.rst | |
+0 −660 | frameworks/mbed.rst | |
+0 −45 | platforms/freescalekinetis.rst | |
+0 −7 | platforms/maxim32.rst | |
+1 −1 | platforms/nordicnrf52.rst | |
+0 −466 | platforms/nxplpc.rst | |
+0 −34 | platforms/siliconlabsefm32.rst | |
+1 −1 | platforms/ststm32.rst | |
+0 −154 | plus/debug-tools/blackmagic.rst | |
+0 −98 | plus/debug-tools/cmsis-dap.rst | |
+0 −203 | plus/debug-tools/jlink.rst | |
+0 −315 | plus/debugging.rst | |
+1 −1 | scripting/middlewares.rst |
Submodule examples
updated
13 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
import pytest | ||
|
||
from platformio import fs | ||
from platformio import __core_packages__, fs | ||
from platformio.package.commands.install import package_install_cmd | ||
from platformio.package.manager.library import LibraryPackageManager | ||
from platformio.package.manager.platform import PlatformPackageManager | ||
|
@@ -148,7 +148,7 @@ def test_skip_dependencies( | |
), | ||
PackageSpec("[email protected]"), | ||
] | ||
assert len(ToolPackageManager().get_installed()) == 0 | ||
assert len(ToolPackageManager().get_installed()) == 1 # SCons | ||
|
||
|
||
def test_baremetal_project( | ||
|
@@ -177,6 +177,7 @@ def test_baremetal_project( | |
), | ||
] | ||
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [ | ||
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]), | ||
PackageSpec("[email protected]"), | ||
] | ||
|
||
|
@@ -209,6 +210,7 @@ def test_project( | |
] | ||
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [ | ||
PackageSpec("[email protected]"), | ||
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]), | ||
PackageSpec("[email protected]"), | ||
] | ||
assert config.get("env:devkit", "lib_deps") == [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
import os | ||
|
||
from platformio import fs | ||
from platformio import __core_packages__, fs | ||
from platformio.package.commands.install import package_install_cmd | ||
from platformio.package.commands.update import package_update_cmd | ||
from platformio.package.exception import UnknownPackageError | ||
|
@@ -172,6 +172,7 @@ def test_project( | |
] | ||
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [ | ||
PackageSpec("[email protected]"), | ||
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]), | ||
PackageSpec("[email protected]"), | ||
] | ||
assert config.get("env:devkit", "lib_deps") == [ | ||
|
@@ -201,6 +202,7 @@ def test_project( | |
] | ||
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [ | ||
PackageSpec("[email protected]"), | ||
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]), | ||
PackageSpec("[email protected]"), | ||
PackageSpec("[email protected]"), | ||
] | ||
|