forked from platformio/platformio-core
Remove Project IDE examples
This commit is contained in:
2
docs
2
docs
Submodule docs updated: dd0d99ad45...257718d2b5
@ -20,10 +20,11 @@ from platformio import util
|
|||||||
|
|
||||||
|
|
||||||
def test_local_env():
|
def test_local_env():
|
||||||
result = util.exec_command(["platformio", "test", "-d",
|
result = util.exec_command([
|
||||||
join("examples", "unit-testing", "calculator"),
|
"platformio", "test", "-d",
|
||||||
"-e", "native"])
|
join("examples", "unit-testing", "calculator"), "-e", "native"
|
||||||
|
])
|
||||||
if result['returncode'] != 1:
|
if result['returncode'] != 1:
|
||||||
pytest.fail(result)
|
pytest.fail(result)
|
||||||
assert all(
|
assert all([s in result['out']
|
||||||
[s in result['out'] for s in ("PASSED", "IGNORED", "FAILED")])
|
for s in ("PASSED", "IGNORED", "FAILED")]), result['out']
|
||||||
|
Reference in New Issue
Block a user