Skip to content

Commit 940fe93

Browse files
Make focus and skip in k8s-node task as variable
1 parent 95460f7 commit 940fe93

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)