Commits

Akeem Wells authored 1c1ed89c02d Merge
Merge branch 'CAS-14363' into CAS-14357

casatestutils/runtest.py

Modified
929 929 print("")
930 930
931 931 cachedir=""
932 932 if args.cachedir is not None:
933 933 cachedir="--cachedir=" + args.cachedir
934 934 print("cachedir: " + cachedir)
935 935
936 936 if args.test_group is not None:
937 937 components = args.test_group
938 938 components = [x.strip() for x in components.split(",")]
939 + if len(components) == 1 and not components[0]:
940 + print("Component list is empty. Using component 'default'")
941 + components = ["default"]
939 942 print("Testing Components" + str(components))
940 943 print("")
941 944
942 945 if not args.bamboo:
943 946 if args.mapfile is not None:
944 947 component_to_test_map = json.load(args.mapfile)
945 948 else:
946 949 try:
947 950 import casatestutils as _;
948 951 with open("{}/{}".format(_.__path__[0], "component_to_test_map.json")) as ctt:

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut