1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
5 from __future__ import print_function
11 with open("config.json") as f:
15 for c in config["check_collections"]:
17 api.collections().get(uuid=c).execute()
18 except Exception as e:
19 print("Checking for %s got exception %s" % (c, e))
22 with open("success", "w") as f: