mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 10:42:08 +00:00
languages: Enable grammar loading when compiling with test feature (#19881)
This ensures that `cargo tests -p languages` will not fail with a confusing error message. Follow up to #19821 We opted to check the `test` feature flag instead of defining a runtime flag, because we only want to include the `tree-sitter-*` dependencies in some cases, which is not possible with a runtime flag. Co-Authored-by: Thorsten <thorsten@zed.dev> Release Notes: - N/A Co-authored-by: Thorsten <thorsten@zed.dev>
This commit is contained in:
parent
bdb54decdc
commit
7a6b6435c4
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ fn load_config(name: &str) -> LanguageConfig {
|
|||
.with_context(|| format!("failed to load config.toml for language {name:?}"))
|
||||
.unwrap();
|
||||
|
||||
#[cfg(not(feature = "load-grammars"))]
|
||||
#[cfg(not(any(feature = "load-grammars", test)))]
|
||||
{
|
||||
config = LanguageConfig {
|
||||
name: config.name,
|
||||
|
|
Loading…
Reference in a new issue