Skip to content

jenkinsci/nunit-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NUnit Plugin

Build Status Coverage LOC Contributors Jenkins Plugin Jenkins Plugin Installs

Introduction

This plugin allows you to publish NUnit test results.

Pipeline example

For more information refer to NUnit Pipeline Steps

For Scripted pipeline

node {

    ...

    stage("Publish NUnit Test Report") {
        nunit testResultsPattern: 'TestResult.xml'
    }

    ...

}

For Declarative pipeline

pipeline {
    agent any

    ...

    stages {

        ...

        stage("Publish NUnit Test Report") {
            steps {
                nunit testResultsPattern: 'TestResult.xml'
            }
        }

        ...

    }
}

Version History

See the releases and the changelog

Contributing

Refer to our contribution guidelines

LICENSE

Licensed under MIT, see LICENSE