@@ -214,7 +214,7 @@ def expected_featured_feeds
214214 expect ( json . dig ( 'data' , 'health' , 'status' ) ) . to eq ( 'healthy' )
215215 end
216216
217- it 'returns health status when the configured environment token is valid' , :aggregate_failures do
217+ it 'returns health status when the configured environment token is valid' , :aggregate_failures , openapi : false do
218218 ClimateControl . modify ( HEALTH_CHECK_TOKEN : 'rotated-health-token' ) do
219219 allow ( Html2rss ::Web ::Auth ) . to receive ( :authenticate ) . and_call_original
220220
@@ -227,7 +227,7 @@ def expected_featured_feeds
227227 end
228228 end
229229
230- it 'returns health status after production-style env scrubbing' , :aggregate_failures do
230+ it 'returns health status after production-style env scrubbing' , :aggregate_failures , openapi : false do
231231 capture_scrubbed_runtime_env (
232232 'RACK_ENV' => 'production' ,
233233 'HEALTH_CHECK_TOKEN' => 'scrubbed-health-token'
@@ -410,7 +410,7 @@ def expected_featured_feeds
410410 )
411411 end
412412
413- it 'returns non-cacheable xml feed errors when service generation fails' , :aggregate_failures do
413+ it 'returns non-cacheable feed errors when service generation fails' , :aggregate_failures do
414414 unique_url = "#{ feed_url } /service-error-xml"
415415 token = Html2rss ::Web ::Auth . generate_feed_token ( 'admin' , unique_url , strategy : 'faraday' )
416416
@@ -424,7 +424,7 @@ def expected_featured_feeds
424424 expect ( last_response . body ) . to include ( 'Internal Server Error' )
425425 end
426426
427- it 'returns non-cacheable json feed errors when service generation fails' , :aggregate_failures do
427+ it 'returns non-cacheable json feed errors when service generation fails' , :aggregate_failures , openapi : false do
428428 unique_url = "#{ feed_url } /service-error-json"
429429 token = Html2rss ::Web ::Auth . generate_feed_token ( 'admin' , unique_url , strategy : 'faraday' )
430430
0 commit comments