Skip to content

Commit

Permalink
* change beta to experimental to align with feature maturity
Browse files Browse the repository at this point in the history
  • Loading branch information
Aylr committed Apr 22, 2020
1 parent af0330d commit efe6672
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions great_expectations/cli/datasource.py
Expand Up @@ -19,7 +19,7 @@
cli_message,
cli_message_list,
cli_message_dict,
mark_cli_as_beta,
mark_cli_as_experimental,
)
from great_expectations.core import ExpectationSuite
from great_expectations.core.usage_statistics.usage_statistics import send_usage_message
Expand Down Expand Up @@ -191,10 +191,10 @@ def datasource_list(directory):
)
@click.option('--additional-batch-kwargs', default=None,
help='Additional keyword arguments to be provided to get_batch when loading the data asset. Must be a valid JSON dictionary')
@mark_cli_as_beta
@mark_cli_as_experimental
def datasource_profile(datasource, batch_kwargs_generator_name, data_assets, profile_all_data_assets, directory, view, additional_batch_kwargs):
"""
Profile a datasource (BETA)
Profile a datasource (Experimental)
If the optional data_assets and profile_all_data_assets arguments are not specified, the profiler will check
if the number of data assets in the datasource exceeds the internally defined limit. If it does, it will
Expand Down
4 changes: 2 additions & 2 deletions great_expectations/cli/tap.py
Expand Up @@ -12,7 +12,7 @@
from great_expectations.cli.util import (
cli_message,
load_expectation_suite,
mark_cli_as_beta,
mark_cli_as_experimental,
)
from great_expectations.core.usage_statistics.usage_statistics import (
send_usage_message,
Expand All @@ -37,7 +37,7 @@ def tap():
default=None,
help="The project's great_expectations directory.",
)
@mark_cli_as_beta
@mark_cli_as_experimental
def tap_new(suite, tap_filename, directory, datasource=None):
"""Create a new tap file for easy deployments."""
context = _get_context(directory)
Expand Down
6 changes: 3 additions & 3 deletions great_expectations/cli/util.py
Expand Up @@ -124,12 +124,12 @@ def load_expectation_suite(context, suite_name):
sys.exit(1)


def mark_cli_as_beta(func):
"""Apply as a decorator to CLI commands that are in BETA."""
def mark_cli_as_experimental(func):
"""Apply as a decorator to CLI commands that are Experimental."""
@wraps(func)
def wrapper(*args, **kwargs):
cli_message(
"<yellow>Heads up! This feature is in BETA. It may change. "
"<yellow>Heads up! This feature is Experimental. It may change. "
"Please give us your feedback!</yellow>"
)
func(*args, **kwargs)
Expand Down

0 comments on commit efe6672

Please sign in to comment.