mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-27 17:25:08 +00:00
Force project name "test"
This commit is contained in:
parent
2c59dfef59
commit
df59c607c4
1 changed files with 1 additions and 2 deletions
|
|
@ -1,7 +1,6 @@
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import uuid
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
@ -39,7 +38,7 @@ def env_file(tmp_path_factory: pytest.TempPathFactory):
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
@pytest.fixture(scope="session")
|
||||||
def compose(env_file: str):
|
def compose(env_file: str):
|
||||||
return Compose(project_name=str(uuid.uuid4()), env_file=env_file)
|
return Compose(project_name="test", env_file=env_file)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True, scope="session")
|
@pytest.fixture(autouse=True, scope="session")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue