Skip to content

Commit

Permalink
NODE-5583 some refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
braek-neck committed Aug 6, 2024
1 parent 463247f commit 7400abc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
File renamed without changes.
4 changes: 3 additions & 1 deletion test/smoke/run-smoke-suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ set -o errexit
set -o nounset
set -o pipefail

#import functions
source "${PWD}/test/smoke/functions.sh"

# check if all mandatory vars was defined
source "${PWD}/test/smoke/check_mandatory_vars.sh"
check_mandatory_vars

export KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME:-ingress-smoke-test}
Expand Down
4 changes: 3 additions & 1 deletion test/smoke/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

#import functions
source "${PWD}/test/smoke/functions.sh"

# check if all mandatory vars was defined
source "${PWD}/test/smoke/check_mandatory_vars.sh"
check_mandatory_vars

KIND_LOG_LEVEL="1"
Expand Down

0 comments on commit 7400abc

Please sign in to comment.