Skip to content

Commit

Permalink
add materializable to vale keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
clairelin135 committed Aug 28, 2024
1 parent fa05708 commit 535f355
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/vale/styles/config/vocabularies/Dagster/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Declarative Automation
dagster-.*
gRPC
[Mm]aterializations
[Mm]aterializable
[Mm]emoization
REST API
[Ss]ubprocess
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
from dagster_cloud.anomaly_detection import build_anomaly_detection_freshness_checks

freshness_checks = build_anomaly_detection_freshness_checks(assets=..., params=None)
import dagster as dg


@dg.observable_source_asset
def hourly_sales(): ...


freshness_checks = build_anomaly_detection_freshness_checks(
assets=[hourly_sales], params=None
)
2 changes: 1 addition & 1 deletion examples/docs_beta_snippets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
],
packages=find_packages(exclude=["test"]),
install_requires=["dagster-cloud", "dagster-aws"],
extras_require={"test": ["pytest", "mock", "path"]},
extras_require={"test": ["pytest", "mock", "path", "dagster_snowflake"]},
)

0 comments on commit 535f355

Please sign in to comment.