jenkinsfile: rename "unit test" step

This commit is contained in:
Frédéric Péters 2018-04-25 20:44:18 +02:00
parent d8cff80906
commit f1314b8e03
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@
pipeline {
agent any
stages{
stage('Unit test') {
stage('Unit Tests') {
steps{
sh 'tox -rv'
}