tests: fail the tests if no manifest is given

All the tests have a manifest, therefore there's no need for skipping a test.
This commit is contained in:
Ondřej Budai 2020-03-10 13:21:05 +01:00 committed by Tom Gundersen
parent e5d501c9a3
commit 714f64bf22

View file

@ -178,10 +178,6 @@ def run_ssh_test(private_key):
def run_test(case, private_key, store):
if "manifest" not in case:
print("skipping this test case, no manifest given")
return True
try:
output_id = run_osbuild(case["manifest"], store)
except subprocess.CalledProcessError as err: