File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ path = "main.rs"
5151}
5252
5353fn set_sources ( config : & mut Config ) -> anyhow:: Result < ( ) > {
54- let path_iterator = glob ( "*.rs" ) . context ( "globbing test sources" ) ?;
54+ let path_iterator = glob ( "**/* .rs" ) . context ( "globbing test sources" ) ?;
5555 config. inputs = path_iterator
5656 . collect :: < Result < Vec < _ > , _ > > ( )
5757 . context ( "fetching test sources" ) ?;
Original file line number Diff line number Diff line change 22| a_file.rs:0:0:0:0 | a_file.rs | fromSource: yes |
33| another_file.rs:0:0:0:0 | another_file.rs | fromSource: yes |
44| lib.rs:0:0:0:0 | lib.rs | fromSource: yes |
5+ | nested.rs:0:0:0:0 | nested.rs | fromSource: yes |
6+ | nested/file.rs:0:0:0:0 | nested/file.rs | fromSource: yes |
Original file line number Diff line number Diff line change 1+ mod file;
You can’t perform that action at this time.
0 commit comments