Skip to content

Commit b0b18e4

Browse files
committed
Add Jenkinsfile for Jenkins integration for python-calculator
1 parent 10d3268 commit b0b18e4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

python-calculator/Jenkinsfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Run Unit Tests') {
5+
steps {
6+
sh 'python3 unittest calculator_unittest.py'
7+
}
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)