https://dagster.io/ logo
#ask-community
Title
# ask-community
n

Nicholas

05/04/2022, 6:45 PM
Does anyone have a good way to check for repo/graph correctness as part of their CI? I was thinking I could run
dagit -f repo.py
and then try to parse logs to see if there are warnings, but that seems a little hacky…
d

daniel

05/04/2022, 6:52 PM
Hey Nicholas - I think in a lot of cases
python repo.py
will do it! If there's a correctness issue with defining your graph, in most cases that will raise an exception as soon as the definition is loaded.
👍 1
n

Nicholas

05/04/2022, 6:55 PM
Simple solutions are best — I should have thought of thatfacepalm . Thanks for the suggestion!