Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move serde_test out to serde-rs/test #2533

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ jobs:
toolchain: ${{matrix.rust}}
- run: cd serde && cargo build --features rc
- run: cd serde && cargo build --no-default-features
- run: cd serde_test && cargo build
- run: cd serde_test && cargo test --features serde/derive,serde/rc

nightly:
name: Rust nightly ${{matrix.os == 'windows' && '(windows)' || ''}}
Expand Down Expand Up @@ -88,7 +86,6 @@ jobs:
- run: cd serde && cargo build --features rc
- run: cd serde && cargo build --no-default-features
- run: cd serde && cargo build
- run: cd serde_test && cargo build

more:
name: Rust ${{matrix.rust}}
Expand Down Expand Up @@ -149,7 +146,6 @@ jobs:
- run: cd serde && cargo clippy --features rc,unstable -- -Dclippy::all -Dclippy::pedantic
- run: cd serde_derive && cargo clippy -- -Dclippy::all -Dclippy::pedantic
- run: cd serde_derive_internals && cargo clippy -- -Dclippy::all -Dclippy::pedantic
- run: cd serde_test && cargo clippy -- -Dclippy::all -Dclippy::pedantic
- run: cd test_suite && cargo clippy --tests --features unstable -- -Dclippy::all -Dclippy::pedantic
- run: cd test_suite/no_std && cargo clippy -- -Dclippy::all -Dclippy::pedantic

Expand Down
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ members = [
"serde",
"serde_derive",
"serde_derive_internals",
"serde_test",
"test_suite",
]

[patch.crates-io]
serde = { path = "serde" }
Comment on lines +8 to +10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR breaks any attempts to experiment with changing serde public API. I think, it is due to this line. Is it possible to do without it? What is it for?

28 changes: 0 additions & 28 deletions serde_test/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion serde_test/LICENSE-APACHE

This file was deleted.

1 change: 0 additions & 1 deletion serde_test/LICENSE-MIT

This file was deleted.

1 change: 0 additions & 1 deletion serde_test/README.md

This file was deleted.

50 changes: 0 additions & 50 deletions serde_test/build.rs

This file was deleted.

1 change: 0 additions & 1 deletion serde_test/crates-io.md

This file was deleted.

237 changes: 0 additions & 237 deletions serde_test/src/assert.rs

This file was deleted.

Loading