forked from platformio/platformio-core
Bump version to 3.5.2a6
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (3, 5, "2a5")
|
VERSION = (3, 5, "2a6")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@@ -15,7 +15,6 @@
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
import atexit
|
import atexit
|
||||||
import io
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
from os import environ, remove, walk
|
from os import environ, remove, walk
|
||||||
@@ -85,7 +84,7 @@ class InoToCPPConverter(object):
|
|||||||
|
|
||||||
def _gcc_preprocess(self, contents, out_file):
|
def _gcc_preprocess(self, contents, out_file):
|
||||||
tmp_path = mkstemp()[1]
|
tmp_path = mkstemp()[1]
|
||||||
with io.open(tmp_path, mode="w", encoding="utf-8") as fp:
|
with open(tmp_path, "w") as fp:
|
||||||
fp.write(contents)
|
fp.write(contents)
|
||||||
self.env.Execute(
|
self.env.Execute(
|
||||||
self.env.VerboseAction(
|
self.env.VerboseAction(
|
||||||
|
@@ -24,8 +24,8 @@ from platformio import util
|
|||||||
def validate_cliresult():
|
def validate_cliresult():
|
||||||
|
|
||||||
def decorator(result):
|
def decorator(result):
|
||||||
assert result.exit_code == 0
|
assert result.exit_code == 0, result.output
|
||||||
assert not result.exception
|
assert not result.exception, result.output
|
||||||
|
|
||||||
return decorator
|
return decorator
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user