Skip to content

Commit f4bf890

Browse files
committed
Added Jenkinsfile
1 parent b92746e commit f4bf890

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Jenkinsfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ pipeline {
99
stage('build') {
1010
steps {
1111
withPythonEnv(pythonInstallation: 'Windows-CPython-36') {
12-
pybat(script: 'setup.py test --addopts --junit-xml=tests.xml')
12+
pybat(script: 'pip install .', returnStdout: true)
13+
pybat 'setup.py test --addopts --junit-xml=tests.xml'
1314
}
1415

1516
}
@@ -18,6 +19,8 @@ pipeline {
1819
post {
1920
always {
2021
junit 'tests.xml'
22+
2123
}
24+
2225
}
23-
}
26+
}

0 commit comments

Comments
 (0)