Jenkins Test Results Analyzer Does Not Display Results

I am using the TRA plugin for jenkins, and suddenly it stopped showing results for some of the tasks that I am running. The message I get:

No build data. You may need to select a module.

I read this answer, but I'm already using the Post JUnit test report in the Post-Build section .

The workspace path is correct, all XML test report files are.

What am I missing?

+4
source share
1 answer

No build data. You may need to select a module.

, Jenkins, . , , , .

, -, Freestyle ( Maven), Post-build JUnit.

Freestyle Job

freestyle , XML ( XML ) . " " .

JUnit, xml , junitResult.xml. , , XML . :

D:.                                   
└───jobs                              
    └───MavenFreestyle                
        ├───builds                    
        │   ├───1                     
        │   │       build.xml         
        │   │       changelog.xml     
        │   │       junitResult.xml   
        │   │       log               
        │   │                         
        │   └───2                     build.xmlchangelog.xmljunitResult.xmllog               
        └───workspacepom.xml               
            ├───.mvn                  
            ├───src                   
            └───target      

junitResult.xml , TRA-. , , junitResult.xml . , , , , , - .

, , ( ) , .

junitResult.xml , .


, , , :

Failure with empty test results

, Ant , . , , , TRA .

Maven Job

, Maven Jobs:

" " . Module, Project .

"" , - .

Maven Project Page

Maven Module Page

Multi-configuration Configuration. Project .

Multiple Configuration Project Page

Multiple Configuration Page

+3

Source: https://habr.com/ru/post/1690768/


All Articles