Skip to content

Commit

Permalink
Pointed Jenkinsfile to ./tests/
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Mar 5, 2019
1 parent b32697d commit 7268d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Expand Up @@ -134,7 +134,7 @@ def functionalTest (String stageName, String stageUrl, String envSuffix, String
// //the checkout is mandatory, otherwise functional tests would fail
// echo "checking out source"
// checkout scm
// dir('functional-tests') {
// dir('tests/functional-tests') {
// try {
// echo "BASE_URL = ${BASE_URL}"
// if ('all'.equalsIgnoreCase(toTest)) {
Expand Down Expand Up @@ -256,7 +256,7 @@ def apiTest (String stageName, String stageUrl, String envSuffix) {
) {
node("nodejs-${appName}-${envSuffix}-${prNumber}") {
checkout scm
dir('api-tests') {
dir('tests/api-tests') {
sh 'npm install -g newman'
try {
sh """
Expand Down

0 comments on commit 7268d79

Please sign in to comment.