You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""This function is used to print out help either by request, or if an invalid option is used."""
68
-
print
69
-
print"Usage: python build.py [command]"
70
-
print
71
-
print"\t--help\t\t\tprint this help message"
72
-
print"\t--clean\t\t\tclean out this build by deleting the %s directory"%p["targetDir"]
73
-
print"\t--test\t\t\trun the test suite, leaving all artifacts in %s"%p["testDir"]
74
-
print"\t--suite [suite]\t\trun a specific test suite, leaving all artifacts in %s"%p["testDir"]
75
-
print"\t--coverage\t\trun the test suite with coverage analysis, leaving all artifacts in %s"%p["testDir"]
76
-
print"\t--debug-level [info|debug]\n\t\t\t\tthreshold of logging message when running tests or coverage analysis"
77
-
print"\t--package\t\tpackage everything up into a tarball for release to sourceforge in %s"%p["packageDir"]
78
-
print"\t--build-stamp [tag]\tfor --package, this specifies a special tag, generating version tag '%s.<tag>. springpython.properties can override with build.stamp'"%p["version"]
79
-
print"\t\t\t\tIf this option isn't used, default will be tag will be '%s.<current time>'"%p["version"]
80
-
print"\t--register\t\tregister this release with http://pypi.python.org/pypi"
print("\t--clean\t\t\tclean out this build by deleting the %s directory"%p["targetDir"])
74
+
print("\t--test\t\t\trun the test suite, leaving all artifacts in %s"%p["testDir"])
75
+
print("\t--suite [suite]\t\trun a specific test suite, leaving all artifacts in %s"%p["testDir"])
76
+
print("\t--coverage\t\trun the test suite with coverage analysis, leaving all artifacts in %s"%p["testDir"])
77
+
print("\t--debug-level [info|debug]\n\t\t\t\tthreshold of logging message when running tests or coverage analysis")
78
+
print("\t--package\t\tpackage everything up into a tarball for release to sourceforge in %s"%p["packageDir"])
79
+
print("\t--build-stamp [tag]\tfor --package, this specifies a special tag, generating version tag '%s.<tag>. springpython.properties can override with build.stamp'"%p["version"])
80
+
print("\t\t\t\tIf this option isn't used, default will be tag will be '%s.<current time>'"%p["version"])
81
+
print("\t--register\t\tregister this release with http://pypi.python.org/pypi")
0 commit comments