-
Notifications
You must be signed in to change notification settings - Fork 10
/
test.ps1
16 lines (12 loc) · 1.11 KB
/
test.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
python -m unittest; if ($LastExitCode -ne 0) { throw "Failed unittest" }
python mdg-tool.py generate .\sample_recipes\sparx\config-sparx-django.yaml; if ($LastExitCode -ne 0) { throw "Failed config-sparx-django.yaml" }
# python mdg-tool.py generate .\sample_recipes\sparx\config-sparx-docs.yaml
# python mdg-tool.py generate .\sample_recipes\sparx\config-sparx-python.yaml
# python mdg-tool.py generate .\sample_recipes\sparx\config-sparx-schema.yaml
# python mdg-tool.py generate .\sample_recipes\sparx\config-sparx-sqlalchemy.yaml
# python mdg-tool.py generate .\sample_recipes\drawio\config-drawio-django.yaml
# python mdg-tool.py generate .\sample_recipes\drawio\config-drawio-java.yaml
python mdg-tool.py dumps .\sample_recipes\drawio\config-drawio-java.yaml; if ($LastExitCode -ne 0) { throw "Failed config-drawio-java.yaml" }
# python mdg-tool.py generate .\sample_recipes\bouml\config-bouml-schema.yaml
# python mdg-tool.py dumps .\sample_recipes\bouml\config-bouml-schema.yaml
python mdg-tool.py dumps .\sample_recipes\sparxdb\config-sparxdb-graphql.yaml; if ($LastExitCode -ne 0) { throw "Failed config-sparxdb-graphql.yaml" }