Skip to content

Commit a023ab7

Browse files
author
sivakami
committed
Ginkgo run specs only on specified files.
1 parent 6e1c1d4 commit a023ab7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.pipelines/swiftv2-long-running/template/long-running-pipeline-template.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ stages:
222222
echo "==> Creating test resources (8 scenarios)"
223223
export RG="$(rgName)"
224224
export BUILD_ID="$(rgName)"
225-
ginkgo -v -trace --timeout=1h --focus="Datapath Create" ./test/integration/swiftv2/longRunningCluster
225+
cd ./test/integration/swiftv2/longRunningCluster
226+
ginkgo -v -trace --timeout=1h --focus-file=datapath_create_test.go
226227
227228
- script: |
228229
echo "Waiting 20 minutes for pods to run..."
@@ -282,5 +283,6 @@ stages:
282283
echo "==> Deleting test resources (8 scenarios)"
283284
export RG="$(rgName)"
284285
export BUILD_ID="$(rgName)"
285-
ginkgo -v -trace --timeout=1h --focus="Datapath Delete" ./test/integration/swiftv2/longRunningCluster
286+
cd ./test/integration/swiftv2/longRunningCluster
287+
ginkgo -v -trace --timeout=1h --focus-file=datapath_delete_test.go
286288

0 commit comments

Comments
 (0)