Loading robot2doc/create_sols.py +2 −2 Original line number Original line Diff line number Diff line Loading @@ -222,9 +222,9 @@ if __name__ == "__main__": print("Generating entire SOL tests") print("Generating entire SOL tests") if BRANCH =~ 3.*$ : if BRANCH.startswith("3"): sol_specs = ["SOL002", "SOL003", "SOL005", "SOL009", "SOL011", "SOL012"] sol_specs = ["SOL002", "SOL003", "SOL005", "SOL009", "SOL011", "SOL012"] elif (BRANCH =~ 2.*$ || BRANCH == "master") : elif (BRANCH.startswith("2") || BRANCH == "master") : sol_specs = ["SOL002", "SOL003", "SOL005"] sol_specs = ["SOL002", "SOL003", "SOL005"] else: else: print("Could not determine branch") print("Could not determine branch") Loading Loading
robot2doc/create_sols.py +2 −2 Original line number Original line Diff line number Diff line Loading @@ -222,9 +222,9 @@ if __name__ == "__main__": print("Generating entire SOL tests") print("Generating entire SOL tests") if BRANCH =~ 3.*$ : if BRANCH.startswith("3"): sol_specs = ["SOL002", "SOL003", "SOL005", "SOL009", "SOL011", "SOL012"] sol_specs = ["SOL002", "SOL003", "SOL005", "SOL009", "SOL011", "SOL012"] elif (BRANCH =~ 2.*$ || BRANCH == "master") : elif (BRANCH.startswith("2") || BRANCH == "master") : sol_specs = ["SOL002", "SOL003", "SOL005"] sol_specs = ["SOL002", "SOL003", "SOL005"] else: else: print("Could not determine branch") print("Could not determine branch") Loading