Commit 7ce69503 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix matching branch

parent 5a6ef74b
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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")