Skip to content

Commit e573000

Browse files
RUST-2294 Fold serde-tests into regular tests (#616)
1 parent ab8109e commit e573000

File tree

14 files changed

+1987
-2876
lines changed

14 files changed

+1987
-2876
lines changed

.evergreen/check-clippy.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,3 @@ CLIPPY_VERSION=1.89.0
1010
rustup install $CLIPPY_VERSION
1111

1212
cargo +$CLIPPY_VERSION clippy --all-targets --all-features -p bson -- -D warnings
13-
14-
cd serde-tests
15-
cargo +$CLIPPY_VERSION clippy --all-targets --all-features -p serde-tests -- -D warnings

.evergreen/check-rustfmt.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ set -o errexit
44

55
. ~/.cargo/env
66
cargo +nightly fmt -- --check
7-
8-
cd serde-tests && cargo +nightly fmt -- --check

.evergreen/run-tests.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,3 @@ set -o errexit
88
RUST_BACKTRACE=1 cargo test --all-targets
99
# Test with all features and including doctests
1010
RUST_BACKTRACE=1 cargo test --all-features
11-
12-
cd serde-tests
13-
RUST_BACKTRACE=1 cargo test

Cargo.lock

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ exclude = [
2424
"etc/**",
2525
"examples/**",
2626
"fuzz/**",
27-
"serde-tests/**",
2827
"src/tests/**",
2928
"rustfmt.toml",
3029
".travis.yml",
@@ -89,6 +88,7 @@ serde_path_to_error = "0.1.16"
8988
serde_json = { version = "1", features = ["preserve_order"] }
9089
chrono = { version = "0.4", features = ["serde", "clock", "std"], default-features = false }
9190
jiff = { version = "0.2", default-features = false, features = ["std"] }
91+
rmp-serde = "0.15"
9292

9393
[package.metadata.docs.rs]
9494
all-features = true

0 commit comments

Comments
 (0)