Skip to content

Commit c299bf9

Browse files
Add support for a CUSTODIAN_GZIPPED_OUTPUT setting
Closes #1268.
1 parent 34dcf1c commit c299bf9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/atomate2/settings.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ class Atomate2Settings(BaseSettings):
4444
CUSTODIAN_SCRATCH_DIR: Optional[str] = Field(
4545
None, description="Path to scratch directory used by custodian."
4646
)
47+
CUSTODIAN_GZIPPED_OUTPUT: bool = Field(
48+
False,
49+
description="Whether Custodian should gzip the files. This parameter "
50+
"may make sense to use if you are setting CUSTODIAN_SCRATCH_DIR"
4751

4852
# VASP specific settings
4953
VASP_CMD: str = Field(

0 commit comments

Comments
 (0)