Fix PyLint errors in tests

This commit is contained in:
Ivan Kravets
2020-08-17 12:56:57 +03:00
parent 2459e85c1d
commit 6f7fc638c7
22 changed files with 93 additions and 13 deletions

View File

@@ -33,6 +33,7 @@ def test_local_env():
)
if result["returncode"] != 1:
pytest.fail(str(result))
# pylint: disable=unsupported-membership-test
assert all([s in result["err"] for s in ("PASSED", "IGNORED", "FAILED")]), result[
"out"
]