mirror of
https://github.com/status-im/status-go.git
synced 2026-08-31 00:51:12 +00:00
tests-functional/ -> test/functional/ tests-unit-network/ -> test/unit-network/ No Go code changes beyond the two package paths. Every reference follows: Makefile targets, the pytest-lint and reliability workflows, the three Jenkinsfiles, the root Dockerfile, pyrightconfig.json, .gitignore, the benchmark and functional-test scripts, and the docs. All paths inside the moved directories are self-contained (docker compose uses `context: .`, the Python helpers resolve from __file__), so the extra level of nesting does not reach outside. refs #7067
21 lines
545 B
Python
21 lines
545 B
Python
from typing import List, Iterator
|
|
|
|
|
|
class Config:
|
|
base_dir: str = ""
|
|
|
|
status_backend_urls: Iterator[str] | None = None
|
|
anvil_url: str = ""
|
|
password: str = "" # FIXME: remove
|
|
docker_project_name: str = ""
|
|
docker_image: str = ""
|
|
peer_docker_images: List[str] | None = None
|
|
codecov_dir: str = ""
|
|
logs_dir: str = ""
|
|
benchmark_results_dir: str = ""
|
|
logout: bool = False
|
|
waku_fleets_config: str = ""
|
|
waku_fleet: str = ""
|
|
push_fleets_config: str = ""
|
|
disable_override_networks: bool = False
|