Skip to content

Commit 05bad06

Browse files
authored
Removes compile_fail glob pattern (#18040)
# Objective - Attempts to fix #17876. ## Solution - Reverted some changes that added a glob pattern to match all `compile_fail` crates. This should enable Dependabot to create PRs again. - Added a TODO comment to not forget that this glob matching failure should also be fixed in the Dependabot repo.
1 parent 25cee42 commit 05bad06

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ members = [
1919
"crates/*",
2020
# Several crates with macros have "compile fail" tests nested inside them, also known as UI
2121
# tests, that verify diagnostic output does not accidentally change.
22-
"crates/*/compile_fail",
22+
# TODO: Use a glob pattern once they are fixed in `dependabot-core`
23+
# TODO: See https://github.com/bevyengine/bevy/issues/17876 for context.
24+
"crates/bevy_derive/compile_fail",
25+
"crates/bevy_ecs/compile_fail",
26+
"crates/bevy_reflect/compile_fail",
2327
# Examples of compiling Bevy for mobile platforms.
2428
"examples/mobile",
2529
# Benchmarks

0 commit comments

Comments
 (0)