diff --git a/.gitignore b/.gitignore index 785494c..413ca59 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,5 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +tests/unittests/reports/ +tests/workflow_tests/reports/ diff --git a/Jenkinsfile b/Jenkinsfile index fcbf642..35a638e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,12 +37,12 @@ podTemplate( extensions: [], gitTool: 'Default', submoduleCfg: [], - userRemoteConfigs: [[refspec: '+refs/pull/*:refs/remotes/origin/pr/*', credentialsId: '704061ca-54ca-4aec-b5ce-ddc7e9eab0f2', url: 'git@github.com:InstituteforDiseaseModeling/emod-typhoid.git']]]) + userRemoteConfigs: [[refspec: '+refs/pull/*:refs/remotes/origin/pr/*', credentialsId: '704061ca-54ca-4aec-b5ce-ddc7e9eab0f2', url: 'git@github.com:InstituteforDiseaseModeling/emodpy-typhoid.git']]]) } else { echo "I execute on the ${env.BRANCH_NAME} branch" git branch: "${env.BRANCH_NAME}", credentialsId: '704061ca-54ca-4aec-b5ce-ddc7e9eab0f2', - url: 'git@github.com:InstituteforDiseaseModeling/emod-typhoid.git' + url: 'git@github.com:InstituteforDiseaseModeling/emodpy-typhoid.git' } } stage('Install') {