feat: add hmake command alias

This commit is contained in:
debugtalk
2020-05-15 15:58:20 +08:00
parent 3f6482e79f
commit 0c6fff20cb
2 changed files with 10 additions and 1 deletions

View File

@@ -166,5 +166,13 @@ def main_hrun_alias():
main()
def main_make_alias():
""" command alias
hmake = httprunner make
"""
sys.argv.insert(1, "make")
main()
if __name__ == "__main__":
main()