Commit 23e0b2b8 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Add Release-4 branch to create SOL documents

parent 5382502b
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -224,9 +224,11 @@ if __name__ == "__main__":

    print("Generating entire SOL tests")

    if (BRANCH.startswith("3") or (BRANCH == "Release-3")):
    if (BRANCH.startswith("4") or (BRANCH == "Release-4")):
        sol_specs = ["SOL002", "SOL003", "SOL005", "SOL009", "SOL011", "SOL012"]
    elif (BRANCH.startswith("2")) or (BRANCH == "Release-2") :
    elif (BRANCH.startswith("3")) or (BRANCH == "Release-3") :
        sol_specs = ["SOL002", "SOL003", "SOL005", "SOL009", "SOL011", "SOL012"]
    elif (BRANCH.startswith("2")) or (BRANCH == "master"):
        sol_specs = ["SOL002", "SOL003", "SOL005"]
    else:
        print("Could not determine branch")