refactor: remove frappe builds

This commit is contained in:
Revant Nandgaonkar 2022-12-28 05:04:06 +05:30
parent cadaa0a0bf
commit 0e0b9d7564
3 changed files with 3 additions and 14 deletions

View file

@ -53,7 +53,7 @@ group "erpnext" {
} }
group "default" { group "default" {
targets = ["frappe", "erpnext"] targets = ["erpnext"]
} }
function "tag" { function "tag" {

View file

@ -65,19 +65,6 @@ def frappe_site(compose: Compose):
yield site_name yield site_name
@pytest.fixture(scope="class")
def erpnext_setup(compose: Compose):
compose.stop()
args = ["-f", "overrides/compose.erpnext.yaml"]
if CI:
args += ("-f", "tests/compose.ci-erpnext.yaml")
compose(*args, "up", "-d", "--quiet-pull")
yield
compose.stop()
@pytest.fixture(scope="class") @pytest.fixture(scope="class")
def erpnext_site(compose: Compose): def erpnext_site(compose: Compose):
site_name = "test_erpnext_site" site_name = "test_erpnext_site"

View file

@ -28,6 +28,8 @@ class Compose:
"-f", "-f",
"compose.yaml", "compose.yaml",
"-f", "-f",
"overrides/compose.erpnext.yaml",
"-f",
"overrides/compose.proxy.yaml", "overrides/compose.proxy.yaml",
"-f", "-f",
"overrides/compose.mariadb.yaml", "overrides/compose.mariadb.yaml",