mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 23:35:09 +00:00
Print configuration before running tests
This commit is contained in:
parent
2979f4644f
commit
7d5f65c775
1 changed files with 7 additions and 0 deletions
|
|
@ -104,6 +104,11 @@ ERPNEXT_VERSION={os.getenv("ERPNEXT_VERSION")}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@log("Print compose configuration")
|
||||||
|
def print_compose_configuration():
|
||||||
|
docker_compose("config")
|
||||||
|
|
||||||
|
|
||||||
@log("Create containers")
|
@log("Create containers")
|
||||||
def create_containers():
|
def create_containers():
|
||||||
docker_compose("up", "-d")
|
docker_compose("up", "-d")
|
||||||
|
|
@ -315,7 +320,9 @@ def main() -> int:
|
||||||
patch_print()
|
patch_print()
|
||||||
|
|
||||||
setup_env()
|
setup_env()
|
||||||
|
print_compose_configuration()
|
||||||
create_containers()
|
create_containers()
|
||||||
|
|
||||||
ping_links_in_backends()
|
ping_links_in_backends()
|
||||||
create_site()
|
create_site()
|
||||||
check_index()
|
check_index()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue