@@ -60,6 +60,7 @@ var _ = Describe("Podman logs", func() {
60
60
results .WaitWithDefaultTimeout ()
61
61
Expect (results ).To (ExitCleanly ())
62
62
63
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
63
64
Eventually (func (g Gomega ) {
64
65
results = podmanTest .Podman ([]string {"logs" , cid })
65
66
results .WaitWithDefaultTimeout ()
@@ -81,6 +82,7 @@ var _ = Describe("Podman logs", func() {
81
82
wait .WaitWithDefaultTimeout ()
82
83
Expect (wait ).To (ExitCleanly ())
83
84
85
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
84
86
Eventually (func (g Gomega ) {
85
87
results := podmanTest .Podman ([]string {"logs" , "--tail" , "2" , cid })
86
88
results .WaitWithDefaultTimeout ()
@@ -121,6 +123,7 @@ var _ = Describe("Podman logs", func() {
121
123
wait .WaitWithDefaultTimeout ()
122
124
Expect (wait ).To (ExitCleanly ())
123
125
126
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
124
127
Eventually (func (g Gomega ) {
125
128
results := podmanTest .Podman ([]string {"logs" , "--tail" , "99" , name })
126
129
results .WaitWithDefaultTimeout ()
@@ -153,6 +156,7 @@ var _ = Describe("Podman logs", func() {
153
156
wait .WaitWithDefaultTimeout ()
154
157
Expect (wait ).To (ExitCleanly ())
155
158
159
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
156
160
Eventually (func (g Gomega ) {
157
161
results := podmanTest .Podman ([]string {"logs" , "--tail" , "800" , cid })
158
162
results .WaitWithDefaultTimeout ()
@@ -173,6 +177,7 @@ var _ = Describe("Podman logs", func() {
173
177
wait .WaitWithDefaultTimeout ()
174
178
Expect (wait ).To (ExitCleanly ())
175
179
180
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
176
181
Eventually (func (g Gomega ) {
177
182
results := podmanTest .Podman ([]string {"logs" , "--tail" , "2" , "-t" , cid })
178
183
results .WaitWithDefaultTimeout ()
@@ -193,6 +198,7 @@ var _ = Describe("Podman logs", func() {
193
198
wait .WaitWithDefaultTimeout ()
194
199
Expect (wait ).To (ExitCleanly ())
195
200
201
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
196
202
Eventually (func (g Gomega ) {
197
203
results := podmanTest .Podman ([]string {"logs" , "--since" , "2017-08-07T10:10:09.056611202-04:00" , cid })
198
204
results .WaitWithDefaultTimeout ()
@@ -213,6 +219,7 @@ var _ = Describe("Podman logs", func() {
213
219
wait .WaitWithDefaultTimeout ()
214
220
Expect (wait ).To (ExitCleanly ())
215
221
222
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
216
223
Eventually (func (g Gomega ) {
217
224
results := podmanTest .Podman ([]string {"logs" , "--since" , "10m" , cid })
218
225
results .WaitWithDefaultTimeout ()
@@ -233,6 +240,7 @@ var _ = Describe("Podman logs", func() {
233
240
wait .WaitWithDefaultTimeout ()
234
241
Expect (wait ).To (ExitCleanly ())
235
242
243
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
236
244
Eventually (func (g Gomega ) {
237
245
results := podmanTest .Podman ([]string {"logs" , "--until" , "10m" , cid })
238
246
results .WaitWithDefaultTimeout ()
@@ -253,6 +261,7 @@ var _ = Describe("Podman logs", func() {
253
261
wait .WaitWithDefaultTimeout ()
254
262
Expect (wait ).To (ExitCleanly ())
255
263
264
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
256
265
Eventually (func (g Gomega ) {
257
266
now := time .Now ()
258
267
now = now .Add (time .Minute * 1 )
@@ -391,6 +400,7 @@ var _ = Describe("Podman logs", func() {
391
400
Expect (inspect ).To (ExitCleanly ())
392
401
Expect (inspect .OutputToString ()).To (Equal ("10kB" ))
393
402
403
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
394
404
Eventually (func (g Gomega ) {
395
405
results := podmanTest .Podman ([]string {"logs" , cid })
396
406
results .WaitWithDefaultTimeout ()
@@ -410,6 +420,7 @@ var _ = Describe("Podman logs", func() {
410
420
wait .WaitWithDefaultTimeout ()
411
421
Expect (wait ).To (ExitCleanly ())
412
422
423
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
413
424
Eventually (func (g Gomega ) {
414
425
results := podmanTest .Podman ([]string {"logs" , "test" })
415
426
results .WaitWithDefaultTimeout ()
@@ -433,6 +444,7 @@ var _ = Describe("Podman logs", func() {
433
444
wait .WaitWithDefaultTimeout ()
434
445
Expect (wait ).To (ExitCleanly ())
435
446
447
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
436
448
Eventually (func (g Gomega ) {
437
449
results := podmanTest .Podman ([]string {"logs" , cname })
438
450
results .WaitWithDefaultTimeout ()
@@ -455,6 +467,7 @@ var _ = Describe("Podman logs", func() {
455
467
// However this test must make sure that there is no such extra newline.
456
468
Expect (string (logc .Out .Contents ())).To (Equal (content ))
457
469
470
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
458
471
Eventually (func (g Gomega ) {
459
472
logs := podmanTest .Podman ([]string {"logs" , cname })
460
473
logs .WaitWithDefaultTimeout ()
@@ -489,6 +502,7 @@ var _ = Describe("Podman logs", func() {
489
502
ctr .WaitWithDefaultTimeout ()
490
503
Expect (ctr ).To (ExitCleanly ())
491
504
505
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
492
506
Eventually (func (g Gomega ) {
493
507
results := podmanTest .Podman ([]string {"pod" , "logs" , "-l" })
494
508
results .WaitWithDefaultTimeout ()
@@ -524,6 +538,7 @@ var _ = Describe("Podman logs", func() {
524
538
log2 .WaitWithDefaultTimeout ()
525
539
Expect (log2 ).To (ExitCleanly ())
526
540
541
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
527
542
Eventually (func (g Gomega ) {
528
543
results := podmanTest .Podman ([]string {"pod" , "logs" , "-l" })
529
544
results .WaitWithDefaultTimeout ()
@@ -546,6 +561,7 @@ var _ = Describe("Podman logs", func() {
546
561
wait .WaitWithDefaultTimeout ()
547
562
Expect (wait ).To (ExitCleanly ())
548
563
564
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
549
565
Eventually (func (g Gomega ) {
550
566
cmd := exec .Command ("journalctl" , "--no-pager" , "-o" , "json" , "--output-fields=CONTAINER_TAG" , fmt .Sprintf ("CONTAINER_ID_FULL=%s" , cid ))
551
567
out , err := cmd .CombinedOutput ()
@@ -566,6 +582,7 @@ var _ = Describe("Podman logs", func() {
566
582
wait .WaitWithDefaultTimeout ()
567
583
Expect (wait ).To (ExitCleanly ())
568
584
585
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
569
586
Eventually (func (g Gomega ) {
570
587
cmd := exec .Command ("journalctl" , "--no-pager" , "-o" , "json" , "--output-fields=CONTAINER_NAME" , fmt .Sprintf ("CONTAINER_ID_FULL=%s" , cid ))
571
588
out , err := cmd .CombinedOutput ()
@@ -632,6 +649,7 @@ var _ = Describe("Podman logs", func() {
632
649
log2 .WaitWithDefaultTimeout ()
633
650
Expect (log2 ).To (ExitCleanly ())
634
651
652
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
635
653
Eventually (func (g Gomega ) {
636
654
results := podmanTest .Podman ([]string {"pod" , "logs" , "--names" , podName })
637
655
results .WaitWithDefaultTimeout ()
@@ -658,6 +676,7 @@ var _ = Describe("Podman logs", func() {
658
676
log2 .WaitWithDefaultTimeout ()
659
677
Expect (log2 ).To (ExitCleanly ())
660
678
679
+ //nolint:ginkgolinter // false positive https://github.com/golangci/golangci-lint/issues/5398
661
680
Eventually (func (g Gomega ) {
662
681
results := podmanTest .Podman ([]string {"pod" , "logs" , "--color" , podName })
663
682
results .WaitWithDefaultTimeout ()
0 commit comments