Skip to content

Commit

Permalink
Update testing-sources.md for docs on running all source tests
Browse files Browse the repository at this point in the history
The documentation advises on running the `dbt test --select source:*` command for running tests on all sources. However, this syntax (with the asterisk), is not something the CLI is too happy with. Double quoting the selector resolves the error.
  • Loading branch information
anubhavsharma515 authored Nov 29, 2023
1 parent 61d7b0b commit b6d0fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/faqs/Tests/testing-sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ id: testing-sources
To run tests on all sources, use the following command:

```shell
$ dbt test --select source:*
$ dbt test --select "source:*"
```

(You can also use the `-s` shorthand here instead of `--select`)
Expand Down

0 comments on commit b6d0fa3

Please sign in to comment.