diff --git a/.gitignore b/.gitignore index 2d7f420..5726455 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Test reports test-reports/ +test-results/ # Text backup files *.bak diff --git a/Jenkinsfile b/Jenkinsfile index 0c4269a..75d1d34 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,6 +17,7 @@ matrix { stage('test') { sh 'pip3 install -r requirements.txt' sh 'python -m pytest catalog/tests/' + sh 'python -m xmlrunner discover -p *_test.py' } } }