Commit 8b9bb6ed authored by multrus's avatar multrus
Browse files

fix call to generate_tests(), remove option --no_parallel

parent 7113d287
Loading
Loading
Loading
Loading
Loading

generate_test.py

100644 → 100755
+1 −6
Original line number Diff line number Diff line
@@ -168,15 +168,10 @@ if __name__ == "__main__":
        nargs="+",
        help="The combinations of experiment/lab-id that you want to generate, separated by whitespace. Experiment and lab id need to be separated by a comma.",
    )
    parser.add_argument(
        "--no_parallel",
        action="store_true",
        help="If given, configs will not be run in parallel",
    )
    parser.add_argument(
        "--create_cfg_only",
        action="store_true",
        help="If given, only create the configs and folder structure without processing items",
    )
    args = parser.parse_args()
    generate_tests(args.exp_lab_pairs, not args.no_parallel, args.create_cfg_only)
    generate_tests(args.exp_lab_pairs, args.create_cfg_only)