Disable doctests for all libraries

We don't use them, and they add a lot of noise to the test output
when running all tests in the workspace.
This commit is contained in:
Max Brunsfeld 2022-03-03 16:15:56 -08:00
parent 15312d0ac3
commit 05df1dfae9
30 changed files with 32 additions and 0 deletions

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/chat_panel.rs" path = "src/chat_panel.rs"
doctest = false
[dependencies] [dependencies]
client = { path = "../client" } client = { path = "../client" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/client.rs" path = "src/client.rs"
doctest = false
[features] [features]
test-support = ["gpui/test-support", "rpc/test-support"] test-support = ["gpui/test-support", "rpc/test-support"]

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/clock.rs" path = "src/clock.rs"
doctest = false
[dependencies] [dependencies]
smallvec = { version = "1.6", features = ["union"] } smallvec = { version = "1.6", features = ["union"] }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/collections.rs" path = "src/collections.rs"
doctest = false
[features] [features]
test-support = ["seahash"] test-support = ["seahash"]

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/contacts_panel.rs" path = "src/contacts_panel.rs"
doctest = false
[dependencies] [dependencies]
client = { path = "../client" } client = { path = "../client" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/diagnostics.rs" path = "src/diagnostics.rs"
doctest = false
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/editor.rs" path = "src/editor.rs"
doctest = false
[features] [features]
test-support = [ test-support = [

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/file_finder.rs" path = "src/file_finder.rs"
doctest = false
[dependencies] [dependencies]
editor = { path = "../editor" } editor = { path = "../editor" }

View File

@ -6,6 +6,7 @@ edition = "2021"
[lib] [lib]
path = "src/fsevent.rs" path = "src/fsevent.rs"
doctest = false
[dependencies] [dependencies]
bitflags = "1" bitflags = "1"

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/fuzzy.rs" path = "src/fuzzy.rs"
doctest = false
[dependencies] [dependencies]
gpui = { path = "../gpui" } gpui = { path = "../gpui" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/go_to_line.rs" path = "src/go_to_line.rs"
doctest = false
[dependencies] [dependencies]
text = { path = "../text" } text = { path = "../text" }

View File

@ -6,6 +6,7 @@ version = "0.1.0"
[lib] [lib]
path = "src/gpui.rs" path = "src/gpui.rs"
doctest = false
[features] [features]
test-support = ["backtrace", "dhat", "env_logger", "collections/test-support"] test-support = ["backtrace", "dhat", "env_logger", "collections/test-support"]

View File

@ -6,6 +6,7 @@ edition = "2021"
[lib] [lib]
path = "src/gpui_macros.rs" path = "src/gpui_macros.rs"
proc-macro = true proc-macro = true
doctest = false
[dependencies] [dependencies]
syn = "1.0" syn = "1.0"

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/journal.rs" path = "src/journal.rs"
doctest = false
[dependencies] [dependencies]
editor = { path = "../editor" } editor = { path = "../editor" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/language.rs" path = "src/language.rs"
doctest = false
[features] [features]
test-support = [ test-support = [

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/lsp.rs" path = "src/lsp.rs"
doctest = false
[features] [features]
test-support = ["async-pipe"] test-support = ["async-pipe"]

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/outline.rs" path = "src/outline.rs"
doctest = false
[dependencies] [dependencies]
editor = { path = "../editor" } editor = { path = "../editor" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/project.rs" path = "src/project.rs"
doctest = false
[features] [features]
test-support = [ test-support = [

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/project_panel.rs" path = "src/project_panel.rs"
doctest = false
[dependencies] [dependencies]
gpui = { path = "../gpui" } gpui = { path = "../gpui" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/project_symbols.rs" path = "src/project_symbols.rs"
doctest = false
[dependencies] [dependencies]
editor = { path = "../editor" } editor = { path = "../editor" }

View File

@ -6,6 +6,7 @@ version = "0.1.0"
[lib] [lib]
path = "src/rpc.rs" path = "src/rpc.rs"
doctest = false
[features] [features]
test-support = ["gpui/test-support"] test-support = ["gpui/test-support"]

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/search.rs" path = "src/search.rs"
doctest = false
[dependencies] [dependencies]
collections = { path = "../collections" } collections = { path = "../collections" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/snippet.rs" path = "src/snippet.rs"
doctest = false
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/sum_tree.rs" path = "src/sum_tree.rs"
doctest = false
[dependencies] [dependencies]
arrayvec = "0.7.1" arrayvec = "0.7.1"

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/text.rs" path = "src/text.rs"
doctest = false
[features] [features]
test-support = ["rand"] test-support = ["rand"]

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/theme.rs" path = "src/theme.rs"
doctest = false
[dependencies] [dependencies]
gpui = { path = "../gpui" } gpui = { path = "../gpui" }

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/theme_selector.rs" path = "src/theme_selector.rs"
doctest = false
[dependencies] [dependencies]
editor = { path = "../editor" } editor = { path = "../editor" }

View File

@ -3,6 +3,9 @@ name = "util"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
[lib]
doctest = false
[features] [features]
test-support = ["clock", "rand", "serde_json", "tempdir"] test-support = ["clock", "rand", "serde_json", "tempdir"]

View File

@ -5,6 +5,7 @@ edition = "2021"
[lib] [lib]
path = "src/workspace.rs" path = "src/workspace.rs"
doctest = false
[features] [features]
test-support = ["client/test-support", "project/test-support"] test-support = ["client/test-support", "project/test-support"]

View File

@ -8,6 +8,7 @@ version = "0.18.1"
[lib] [lib]
name = "zed" name = "zed"
path = "src/zed.rs" path = "src/zed.rs"
doctest = false
[[bin]] [[bin]]
name = "Zed" name = "Zed"