Improve printing of tabulated results

This commit is contained in:
Ivan Kravets
2019-08-17 20:55:16 +03:00
parent 9023358d9e
commit 0677bcecb9
16 changed files with 275 additions and 260 deletions

View File

@@ -26,5 +26,5 @@ def test_local_env():
])
if result['returncode'] != 1:
pytest.fail(result)
assert all([s in result['out']
assert all([s in result['err']
for s in ("PASSED", "IGNORED", "FAILED")]), result['out']