mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-05 23:51:25 +08:00
create .gitignore file when initializing new project
This commit is contained in:
@@ -533,6 +533,12 @@ def create_scaffold(project_name):
|
|||||||
]
|
]
|
||||||
[create_path(p[0], p[1]) for p in path_list]
|
[create_path(p[0], p[1]) for p in path_list]
|
||||||
|
|
||||||
|
# create .gitignore file
|
||||||
|
ignore_file = os.path.join(project_name, ".gitignore")
|
||||||
|
ignore_content = ".env\nreports/*"
|
||||||
|
with open(ignore_file, "w") as f:
|
||||||
|
f.write(ignore_content)
|
||||||
|
|
||||||
|
|
||||||
def gen_cartesian_product(*args):
|
def gen_cartesian_product(*args):
|
||||||
""" generate cartesian product for lists
|
""" generate cartesian product for lists
|
||||||
|
|||||||
Reference in New Issue
Block a user