Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
revant committed Dec 10, 2024
1 parent 85e164f commit 65c4f28
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def frappe_site(compose: Compose):
site_name = "tests.localhost"
compose.bench(
"new-site",
"--mariadb-user-host-login-scope=%",
# TODO: change to --mariadb-user-host-login-scope=%
"--no-mariadb-socket",
"--db-root-password=123",
"--admin-password=admin",
site_name,
Expand All @@ -94,13 +95,11 @@ def erpnext_site(compose: Compose):
site_name = "test-erpnext-site.localhost"
args = [
"new-site",
"--mariadb-user-host-login-scope=%",
"--db-root-password",
"123",
"--admin-password",
"admin",
"--install-app",
"erpnext",
# TODO: change to --mariadb-user-host-login-scope=%
"--no-mariadb-socket",
"--db-root-password=123",
"--admin-password=admin",
"--install-app=erpnext",
site_name,
]
compose.bench(*args)
Expand Down

0 comments on commit 65c4f28

Please sign in to comment.