Fixes: 1) Apply `--omit` filter for test coverage reports to exclude unnecessary files; 2) Replace `services_data` volume mounts with named Docker volumes for consistency and cleanup (e.g., `postgres-data`, `redis-data`); Extra: 1) Remove `services_data` from `.gitignore`, Docker-related cleanup in uninstall scripts; 2) Simplified related files removal scripts for Unix and Windows; 3) Minor adjustments in documentation comments.
10 lines
225 B
Python
10 lines
225 B
Python
DBBACKUP_CONNECTORS = {
|
|
"default": {
|
|
"SINGLE_TRANSACTION": False,
|
|
"IF_EXISTS": True,
|
|
"RESTORE_SUFFIX": "--set ON_ERROR_STOP=off",
|
|
}
|
|
}
|
|
|
|
DBBACKUP_CLEANUP_KEEP = 2
|
|
DBBACKUP_CLEANUP_KEEP_MEDIA = 2
|