File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,19 @@ trait TestExecutor {
16
16
17
17
impl TestExecutor for Test {
18
18
fn execute ( self ) -> Result < ( ) , Failed > {
19
- println ! ( "Running test: {:?}" , self . path) ;
20
19
21
20
match self . kind {
22
- TestKind :: Lua => execute_lua_integration_test ( & self . path . to_string_lossy ( ) ) ?,
21
+ TestKind :: Lua => {
22
+ println ! ( "Running test: {:?}" , self . path) ;
23
+ execute_lua_integration_test ( & self . path . to_string_lossy ( ) ) ?
24
+ } ,
23
25
TestKind :: Rhai => {
24
26
if cfg ! ( feature = "rhai" ) {
27
+ println ! ( "Running test: {:?}" , self . path) ;
25
28
#[ cfg( feature = "rhai" ) ]
26
29
script_integration_test_harness:: execute_rhai_integration_test ( & self . path . to_string_lossy ( ) ) ?
27
30
} else {
28
- panic ! ( "no 'rhai' feature" )
31
+ println ! ( "Skipping test: {:?}" , self . path ) ;
29
32
}
30
33
} ,
31
34
You can’t perform that action at this time.
0 commit comments