Fix tests

This commit is contained in:
Ivan Kravets
2020-11-12 15:35:37 +02:00
parent 3dcc189740
commit 9ff3c758eb

View File

@ -34,9 +34,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"
]
assert all([s in result["err"] for s in ("PASSED", "FAILED")]), result["out"]
def test_multiple_env_build(clirunner, validate_cliresult, tmpdir):