File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -74,15 +74,16 @@ jobs:
7474      - name : Run all e2e tests 
7575        if : github.event_name == 'workflow_dispatch' || github.event_name == 'push' || steps.filter.outputs.e2e-test == 'true' 
7676        run : python3 e2e/src/main/scripts/run_e2e_test.py --testRunner **/${{ matrix.tests }}/**/TestRunner.java 
77-          #  Step to check if there were failures and run retry runner if needed
78-       - name : Check for Failed Tests and Run Retry Runner 
77+       #  Step to check if there were failures and run retry runner if needed
78+       - name : Check for Failed Tests and Run Retry Test  Runner 
7979        if : always()   #  Always run this step to check for failures
80-         run : if [ -f ./plugin/target/failed_scenarios.txt ]; then 
81-                    echo "Found failed scenarios. Running retry tests." 
82-                    python3 e2e/src/main/scripts/run_e2e_test.py --testRunner **/${{ matrix.tests }}/**/RetryTestRunner.java 
83-                  else 
84-                    echo "No failed scenarios found." 
85-                  fi 
80+         run : | 
81+           if [ -f ./plugin/target/failed_scenarios.txt ]; then 
82+             echo "Found failed scenarios. Running retry tests." 
83+             python3 e2e/src/main/scripts/run_e2e_test.py --testRunner **/${{ matrix.tests }}/**/RetryTestRunner.java 
84+           else 
85+             echo "No failed scenarios found." 
86+           fi 
8687name : Upload debug files  
8788        uses : actions/upload-artifact@v3 
8889        if : always() 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments