Skip to content

Commit

Permalink
Add explicit paths to tests and benches
Browse files Browse the repository at this point in the history
  • Loading branch information
TehPers authored and dralley committed Sep 29, 2022
1 parent c3cf135 commit 9c32654
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Cargo.toml
Expand Up @@ -35,10 +35,12 @@ bench = false
[[bench]]
name = "microbenches"
harness = false
path = "benches/microbenches.rs"

[[bench]]
name = "macrobenches"
harness = false
path = "benches/macrobenches.rs"

[features]
default = []
Expand Down Expand Up @@ -175,27 +177,34 @@ rustdoc-args = ["--cfg", "docs_rs"]
[[test]]
name = "encodings"
required-features = ["encoding"]
path = "tests/encodings.rs"

[[test]]
name = "serde_attrs"
required-features = ["serialize"]
path = "tests/serde_attrs.rs"

[[test]]
name = "serde_roundtrip"
required-features = ["serialize"]
path = "tests/serde_roundtrip.rs"

[[test]]
name = "serde-de"
required-features = ["serialize"]
path = "tests/serde-de.rs"

[[test]]
name = "serde-se"
required-features = ["serialize"]
path = "tests/serde-se.rs"

[[test]]
name = "serde-migrated"
required-features = ["serialize"]
path = "tests/serde-migrated.rs"

[[test]]
name = "async-tokio"
required-features = ["async-tokio"]
path = "tests/async-tokio.rs"

0 comments on commit 9c32654

Please sign in to comment.