broke out testing to individual tests

This commit is contained in:
kevlar 2018-03-07 10:00:50 -08:00
parent ca43eed5ba
commit 9b01898e25

4
Jenkinsfile vendored
View file

@ -11,7 +11,9 @@ pipeline {
}
stage('test core') {
steps {
sh 'pytest daemon/tests'
sh 'pytest daemon/tests/test_core.py'
sh 'pytest daemon/tests/test_gui.py'
sh 'pytest daemon/tests/test_emane.py'
}
}
}