https://dagster.io/ logo
#dagster-support
Title
# dagster-support
s

Sterling Paramore

07/27/2022, 6:58 PM
I’m working through the tutorial and got to the testing page. I was able to get the
pytest test_complex_asset_graph.py
to pass after adding undocumented imports to my file. However, I get a warning after running it:
ExperimentalWarning: "build_assets_job" is an experimental function. It may break in future versions, even between dot releases.
. Just an FYI in case that’s not really experimental anymore.
s

sandy

07/27/2022, 11:23 PM
thanks for reporting this @Sterling Paramore. this is unintentional.
build_assets_job
is experimental as a public API, but I believe you're seeing the warning because it's called from
materialize
, which is not experimental. we will fix