Skip to content

Commit ccc5ad0

Browse files
author
Power Cloud Robot
authored
Merge pull request ppc64le-cloud#64 from Rajalakshmi-Girish/edit-k8s-node-task
Make focus and skip in k8s-node task as variable
2 parents 95460f7 + 940fe93 commit ccc5ad0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

roles/k8s-node/tasks/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@
3737
#!/bin/bash
3838
set -o errexit
3939
40+
focus=${FOCUS:-"\[NodeConformance\]"}
41+
skip=${SKIP-"\[Flaky\]|\[Slow\]|\[Serial\]"}
4042
echo 'This is a script to run e2e-node tests'
4143
pushd /kubernetes
42-
make test-e2e-node FOCUS="\[NodeConformance\]" SKIP="\[Flaky\]|\[Slow\]|\[Serial\]"
44+
make test-e2e-node FOCUS=${focus} SKIP=${skip}
4345
popd
4446
dest: /make-test-e2e-node.sh
4547
mode: '0755'

0 commit comments

Comments
 (0)