I keep getting the following error when I try to run my custom dbt test:
19:38:44 Completed with 1 error, 0 partial successes, and 0 warnings:
19:38:44
19:38:44 Compilation Error in test at_least_one_row_mymodelname_ (models/summary/schema.yml)
'test_at_least_one_row' is undefined. This can happen when calling a macro that does not exist. Check for typos and/or install package dependencies with "dbt deps".
"Generic tests are defined in SQL files. Those files can live in two places:
tests/generic/: that is, a special subfolder named generic within your test paths (tests/ by default)
macros/: Why? Generic tests work a lot like macros, and historically, this was the only place they could be defined. If your generic test depends on complex macro logic, you may find it more convenient to define the macros and the generic test in the same file."