Skip to content

Commit 3c4cdaa

Browse files
committed
remove commented lines
1 parent 15ad48c commit 3c4cdaa

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/functional.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ jobs:
119119
ngf_tag=${{ steps.ngf-meta.outputs.version }}
120120
make test${{ inputs.image == 'plus' && '-with-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag} GINKGO_LABEL=telemetry
121121
working-directory: ./tests
122+
122123
- name: Run functional tests
123124
run: |
124125
ngf_prefix=ghcr.io/nginxinc/nginx-gateway-fabric

tests/suite/system_suite_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,7 @@ var _ = BeforeSuite(func() {
259259
"upgrade", // - running upgrade test (this test will deploy its own version)
260260
"longevity-teardown", // - running longevity teardown (deployment will already exist)
261261
"telemetry", // - running telemetry test (NGF will be deployed as part of the test)
262-
// "graceful-recovery", // - running graceful recovery test (this test will deploy its own version)
263-
"scale", // - running scale test (this test will deploy its own version)
262+
"scale", // - running scale test (this test will deploy its own version)
264263
}
265264
for _, s := range skipSubstrings {
266265
if strings.Contains(labelFilter, s) {
@@ -299,7 +298,5 @@ func isNFR(labelFilter string) bool {
299298
strings.Contains(labelFilter, "longevity") ||
300299
strings.Contains(labelFilter, "performance") ||
301300
strings.Contains(labelFilter, "upgrade") ||
302-
// graceful-recovery tests are treated as functional tests to be run in the pipeline
303-
// strings.Contains(labelFilter, "graceful-recovery") ||
304301
strings.Contains(labelFilter, "scale")
305302
}

0 commit comments

Comments
 (0)