File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ jobs:
119
119
ngf_tag=${{ steps.ngf-meta.outputs.version }}
120
120
make test${{ inputs.image == 'plus' && '-with-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag} GINKGO_LABEL=telemetry
121
121
working-directory : ./tests
122
+
122
123
- name : Run functional tests
123
124
run : |
124
125
ngf_prefix=ghcr.io/nginxinc/nginx-gateway-fabric
Original file line number Diff line number Diff line change @@ -259,8 +259,7 @@ var _ = BeforeSuite(func() {
259
259
"upgrade" , // - running upgrade test (this test will deploy its own version)
260
260
"longevity-teardown" , // - running longevity teardown (deployment will already exist)
261
261
"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)
264
263
}
265
264
for _ , s := range skipSubstrings {
266
265
if strings .Contains (labelFilter , s ) {
@@ -299,7 +298,5 @@ func isNFR(labelFilter string) bool {
299
298
strings .Contains (labelFilter , "longevity" ) ||
300
299
strings .Contains (labelFilter , "performance" ) ||
301
300
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") ||
304
301
strings .Contains (labelFilter , "scale" )
305
302
}
You can’t perform that action at this time.
0 commit comments