mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Remove test code and fix PyLint warning
This commit is contained in:
@ -30,7 +30,7 @@ for IoT development:
|
||||
* Library Manager
|
||||
* Built-in Terminal
|
||||
|
||||
Atom is a text editor that's modern, approachable,
|
||||
Atom is a source code editor that's modern, approachable,
|
||||
yet hackable to the core—a tool you can customize to do anything but also use
|
||||
productively without ever touching a config file.
|
||||
|
||||
@ -62,6 +62,9 @@ Installation
|
||||
User Guide
|
||||
----------
|
||||
|
||||
`platformio-ide <https://atom.io/packages/platformio-ide>`_ package adds to Atom
|
||||
new menu item named ``Menu: PlatformIO`` (after ``Menu: Help`` item).
|
||||
|
||||
Building / Uploading / etc.
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
import sys
|
||||
|
||||
VERSION = (2, 8, "0.dev1")
|
||||
VERSION = (2, 8, "0.dev2")
|
||||
__version__ = ".".join([str(s) for s in VERSION])
|
||||
|
||||
__title__ = "platformio"
|
||||
|
@ -186,7 +186,4 @@ def set_session_var(name, value):
|
||||
|
||||
|
||||
def is_disabled_progressbar():
|
||||
# tmp hook
|
||||
if get_session_var("caller_id") == "atom":
|
||||
return True
|
||||
return is_ci() or getenv("PLATFORMIO_DISABLE_PROGRESSBAR") == "true"
|
||||
|
@ -116,7 +116,7 @@ def ConvertInoToCpp(env):
|
||||
def delete_tmpcpp_file(file_):
|
||||
try:
|
||||
remove(file_)
|
||||
except WindowsError:
|
||||
except WindowsError: # pylint: disable=undefined-variable
|
||||
pass
|
||||
|
||||
ino_nodes = (env.Glob(join("$PROJECTSRC_DIR", "*.ino")) +
|
||||
|
Reference in New Issue
Block a user