All Projects → jenkinsci → Nunit Plugin

jenkinsci / Nunit Plugin

Licence: mit
Jenkins nunit plugin

Programming Languages

java
68154 projects - #9 most used programming language

NUnit Plugin

Build Status 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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].