-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevhelper.py
44 lines (32 loc) · 1.08 KB
/
devhelper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import click
import subprocess
import time
import yaml
class Struct:
def __init__(self, **entries):
self.__dict__.update(entries)
def loadYAML(filename):
f = open('tree.yaml')
# use safe_load instead load
data_map = yaml.safe_load(f)
f.close()
return data_map
@click.command()
@click.option('--auto', default=True, help='Automatically create test data')
# @click.option('--users', type=click.File('r'), default='src/data/users.yaml', required=False, help='The users yaml file location')
@click.argument('out', type=click.File('w'), default='-', required=False)
def cli(auto, out):
"""Mapstory Developer Tool
Usage:
use --auto for creating test data
"""
# click.echo("Hello %s!" % (name,), file=out)
# subprocess.Popen(["nohup", "webdriver-manager", "start"])
# time.sleep(3)
# Starts the protractor specs
# subprocess.call("protractor src/conf.js",
if auto:
click.echo("Creating automatic test data!", file=out)
subprocess.call(["protractor","src/conf.js"])
if __name__ == '__main__':
cli()