在没有版本检查的情况下尝试 运行 dbt 时出现无法识别的参数错误

Unrecognised argument error when trying to run dbt with no version check

我是 dbt 的新手,我正在尝试 运行 dbt 新鲜度测试,但我似乎遇到了错误。

以下代码已成功运行

dbt run --no-version-check

但是当我尝试 运行 这个

 dbt source freshness --no-version-check

我收到以下错误

usage: dbt [-h] [--version] [-r RECORD_TIMING_INFO] [-d] [--log-format {text,json,default}] [--no-write-json]
           [--use-colors | --no-use-colors] [--printer-width PRINTER_WIDTH] [--warn-error] [--no-version-check]
           [--partial-parse | --no-partial-parse] [--use-experimental-parser] [--no-static-parser]
           [--profiles-dir PROFILES_DIR] [--no-anonymous-usage-stats] [-x] [--event-buffer-size EVENT_BUFFER_SIZE]
           {docs,source,init,clean,debug,deps,list,ls,build,snapshot,run,compile,parse,test,seed,run-operation}
           ...
dbt: error: unrecognized arguments: --no-version-check

尝试

dbt --no-version-check source freshness