Skip to content

Commit

Permalink
REFACTOR-modin-project#6889: Define 'all' for 'envvars.py'
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Jan 29, 2024
1 parent fb4a19f commit f2fa1ca
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
50 changes: 50 additions & 0 deletions modin/config/envvars.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,3 +863,53 @@ def _check_vars() -> None:


_check_vars()


__all__ = [
"EnvironmentVariable",
# General settings
"IsDebug",
"Engine",
"StorageFormat",
"CpuCount",
"GpuCount",
"Memory",
# Ray specific
"IsRayCluster",
"RayRedisAddress",
"RayRedisPassword",
"TestRayClient",
# Partitioning
"NPartitions",
"MinPartitionSize",
# HDK specific
"HdkFragmentSize",
"DoUseCalcite",
"HdkLaunchParameters",
# ASV specific
"TestDatasetSize",
"AsvImplementation",
"AsvDataSizeConfig",
# Specific features
"ProgressBar",
"BenchmarkMode",
"PersistentPickle",
"ModinNumpy",
"ExperimentalNumPyAPI",
"RangePartitioningGroupby",
"ExperimentalGroupbyImpl",
"AsyncReadMode",
"ReadSqlEngine",
"IsExperimental",
# For tests
"TrackFileLeaks",
"TestReadFromSqlServer",
"TestReadFromPostgres",
"GithubCI",
"CIAWSSecretAccessKey",
"CIAWSAccessKeyID",
# Logging
"LogMode",
"LogMemoryInterval",
"LogFileSize",
]
2 changes: 1 addition & 1 deletion modin/core/execution/ray/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
RayRedisAddress,
RayRedisPassword,
StorageFormat,
ValueSource,
)
from modin.config.pubsub import ValueSource
from modin.core.execution.utils import set_env
from modin.error_message import ErrorMessage

Expand Down

0 comments on commit f2fa1ca

Please sign in to comment.