We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7790e00 commit 8e6250cCopy full SHA for 8e6250c
crates/languages/bevy_mod_scripting_lua/tests/lua_tests.rs
@@ -106,7 +106,7 @@ fn discover_all_tests() -> Vec<Test> {
106
let mut test_files = Vec::new();
107
visit_dirs(&test_root, &mut |entry| {
108
let path = entry.path();
109
- if path.extension().unwrap() == "lua" && path.to_string_lossy().contains("adds_system") {
+ if path.extension().unwrap() == "lua" {
110
// only take the path from the assets bit
111
let relative = path.strip_prefix(&assets_root).unwrap();
112
test_files.push(Test {
0 commit comments