bugsnag 6.12.2 → 6.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/.buildkite/pipeline.yml +470 -0
  3. data/.rubocop_todo.yml +1 -1
  4. data/CHANGELOG.md +12 -0
  5. data/CONTRIBUTING.md +1 -9
  6. data/Gemfile +11 -6
  7. data/TESTING.md +81 -0
  8. data/VERSION +1 -1
  9. data/docker-compose.yml +46 -0
  10. data/dockerfiles/Dockerfile.jruby-unit-tests +13 -0
  11. data/dockerfiles/Dockerfile.ruby-maze-runner +26 -0
  12. data/dockerfiles/Dockerfile.ruby-unit-tests +12 -0
  13. data/features/delayed_job.feature +6 -22
  14. data/features/fixtures/delayed_job/Dockerfile +2 -4
  15. data/features/fixtures/delayed_job/app/Gemfile +1 -1
  16. data/features/fixtures/delayed_job/app/Rakefile +18 -0
  17. data/features/fixtures/docker-compose.yml +28 -40
  18. data/features/fixtures/expected_breadcrumbs/active_job.json +9 -0
  19. data/features/fixtures/expected_breadcrumbs/mongo_failed.json +15 -0
  20. data/features/fixtures/expected_breadcrumbs/mongo_filtered_request.json +15 -0
  21. data/features/fixtures/expected_breadcrumbs/mongo_filtered_result.json +15 -0
  22. data/features/fixtures/expected_breadcrumbs/mongo_success.json +14 -0
  23. data/features/fixtures/expected_breadcrumbs/request.json +13 -0
  24. data/features/fixtures/expected_breadcrumbs/sql_with_bindings.json +12 -0
  25. data/features/fixtures/expected_breadcrumbs/sql_without_bindings.json +11 -0
  26. data/features/fixtures/plain/Dockerfile +2 -2
  27. data/features/fixtures/plain/app/app.rb +1 -3
  28. data/features/fixtures/plain/app/delivery/fork_threadpool.rb +3 -1
  29. data/features/fixtures/plain/app/unhandled/{Interrupt.rb → interrupt.rb} +0 -0
  30. data/features/fixtures/rack1/Dockerfile +2 -2
  31. data/features/fixtures/rack2/Dockerfile +2 -2
  32. data/features/fixtures/rails3/Dockerfile +2 -2
  33. data/features/fixtures/rails3/app/Gemfile +4 -0
  34. data/features/fixtures/rails3/app/config/initializers/bugsnag.rb +1 -1
  35. data/features/fixtures/rails4/Dockerfile +2 -5
  36. data/features/fixtures/rails4/app/config/initializers/bugsnag.rb +1 -1
  37. data/features/fixtures/rails5/Dockerfile +2 -2
  38. data/features/fixtures/rails5/app/config/initializers/bugsnag.rb +1 -1
  39. data/features/fixtures/rails6/Dockerfile +2 -2
  40. data/features/fixtures/rails6/app/Gemfile +3 -2
  41. data/features/fixtures/rails6/app/app/controllers/mongo_controller.rb +22 -0
  42. data/features/fixtures/rails6/app/app/models/mongo_model.rb +6 -0
  43. data/features/fixtures/rails6/app/config/environments/development.rb +2 -0
  44. data/features/fixtures/rails6/app/config/environments/production.rb +1 -0
  45. data/features/fixtures/rails6/app/config/environments/rails_env.rb +1 -0
  46. data/features/fixtures/rails6/app/config/environments/test.rb +1 -0
  47. data/features/fixtures/rails6/app/config/initializers/bugsnag.rb +1 -1
  48. data/features/fixtures/rails6/app/config/mongoid.yml +23 -0
  49. data/features/fixtures/rails6/app/config/routes.rb +4 -0
  50. data/features/fixtures/resque/Dockerfile +2 -2
  51. data/features/fixtures/sidekiq/Dockerfile +5 -7
  52. data/features/fixtures/sidekiq/app/Gemfile +2 -1
  53. data/features/fixtures/sidekiq/app/Rakefile.rb +14 -0
  54. data/features/fixtures/sinatra1/Dockerfile +2 -2
  55. data/features/fixtures/sinatra2/Dockerfile +2 -2
  56. data/features/plain_features/add_tab.feature +24 -97
  57. data/features/plain_features/app_type.feature +6 -25
  58. data/features/plain_features/app_version.feature +6 -25
  59. data/features/plain_features/auto_notify.feature +4 -20
  60. data/features/plain_features/delivery.feature +12 -60
  61. data/features/plain_features/exception_data.feature +24 -94
  62. data/features/plain_features/filters.feature +9 -43
  63. data/features/plain_features/handled_errors.feature +16 -78
  64. data/features/plain_features/ignore_classes.feature +5 -23
  65. data/features/plain_features/ignore_report.feature +6 -24
  66. data/features/plain_features/proxies.feature +13 -56
  67. data/features/plain_features/release_stages.feature +9 -40
  68. data/features/plain_features/report_api_key.feature +9 -35
  69. data/features/plain_features/report_severity.feature +8 -35
  70. data/features/plain_features/report_stack_frames.feature +24 -92
  71. data/features/plain_features/report_user.feature +23 -96
  72. data/features/plain_features/unhandled_errors.feature +17 -88
  73. data/features/rails_features/api_key.feature +12 -62
  74. data/features/rails_features/app_type.feature +13 -62
  75. data/features/rails_features/app_version.feature +19 -86
  76. data/features/rails_features/auto_capture_sessions.feature +31 -120
  77. data/features/rails_features/auto_notify.feature +28 -113
  78. data/features/rails_features/before_notify.feature +18 -89
  79. data/features/rails_features/breadcrumbs.feature +40 -147
  80. data/features/rails_features/handled.feature +18 -88
  81. data/features/rails_features/ignore_classes.feature +12 -55
  82. data/features/rails_features/meta_data_filters.feature +6 -34
  83. data/features/rails_features/mongo_breadcrumbs.feature +22 -105
  84. data/features/rails_features/project_root.feature +19 -90
  85. data/features/rails_features/release_stage.feature +20 -88
  86. data/features/rails_features/send_code.feature +13 -59
  87. data/features/rails_features/send_environment.feature +7 -35
  88. data/features/rails_features/unhandled.feature +6 -33
  89. data/features/rails_features/user_info.feature +27 -68
  90. data/features/sidekiq.feature +12 -79
  91. data/features/steps/ruby_notifier_steps.rb +59 -15
  92. data/features/support/env.rb +12 -45
  93. data/lib/bugsnag/cleaner.rb +2 -3
  94. data/lib/bugsnag/configuration.rb +12 -0
  95. data/lib/bugsnag/stacktrace.rb +1 -4
  96. data/spec/configuration_spec.rb +11 -0
  97. data/spec/fixtures/apps/rails-initializer-config/Gemfile +5 -1
  98. data/spec/fixtures/apps/rails-invalid-initializer-config/Gemfile +5 -1
  99. data/spec/fixtures/apps/rails-no-config/Gemfile +5 -1
  100. data/spec/integrations/logger_spec.rb +1 -1
  101. data/spec/integrations/rake_spec.rb +1 -1
  102. data/spec/stacktrace_spec.rb +39 -0
  103. metadata +21 -5
  104. data/.travis.yml +0 -122
  105. data/features/plain_features/api_key.feature +0 -25
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1da50fcf9b62e6d076d4f6aa1dd1870afb7f1e68fc535a9dadfae5bc1d5d845
4
- data.tar.gz: 3cf9d8afaa0289bdd0e0115e4b3622f53da47c34d54d88b9a23b2e3824f29e48
3
+ metadata.gz: 2298a07774ef42fb825c7ae6aa9722c9da1234617789236a442cd0d888a4e486
4
+ data.tar.gz: f4882c3be40fe0e4d6582ec24e00751257ab5f5926866c0317a7d6d0ae3aa129
5
5
  SHA512:
6
- metadata.gz: d2a9a6b5d1175288a74e7763badabcc40565f7f3a5ed445afb440f9576b82b80e1005fd67b87af8727e866c50860627120a6bbd49ef59cb6d30839c48210f56d
7
- data.tar.gz: b3514c4c15d2f302795b7807ec0611e1e75110e5a3e8ecc6bb7017ea263e3cd98af64227cdf513f52dea0f00e5a3ecef838518db40b411ab205336fde6aec441
6
+ metadata.gz: 129a9b9cf9411234935f4d49be119596e55475d31ff68e943e978f14ca95d17f2418c37fffa6190f25b03301fd408d5c0d4719c11807934982d3cd6f4d1c52ff
7
+ data.tar.gz: 6dae71c25d20bb071104e07608e51b33e4ab2deaaa0a7bf2bab06694f850d20823d2afde37c1edebd105b8e190b0d22baf61da8d16925b84f3fb5ec757cf6cbf
@@ -0,0 +1,470 @@
1
+ steps:
2
+ - label: ':docker: Build CI image'
3
+ plugins:
4
+ - docker-compose#v3.1.0:
5
+ build: ruby-maze-runner
6
+ image-repository: 855461928731.dkr.ecr.us-west-1.amazonaws.com/ruby
7
+ cache-from: ruby-maze-runner:855461928731.dkr.ecr.us-west-1.amazonaws.com/ruby:base-ruby${BRANCH_NAME}
8
+ - docker-compose#v3.1.0:
9
+ push:
10
+ - ruby-maze-runner:855461928731.dkr.ecr.us-west-1.amazonaws.com/ruby:base-ruby${BRANCH_NAME}
11
+ - ruby-maze-runner:855461928731.dkr.ecr.us-west-1.amazonaws.com/ruby:base-ruby-latest
12
+
13
+ - wait
14
+
15
+ - label: ':ruby: Ruby 1.9.3 unit tests'
16
+ plugins:
17
+ docker-compose#v3.1.0:
18
+ run: ruby-unit-tests
19
+ use-aliases: true
20
+ env:
21
+ RUBY_TEST_VERSION: "1.9.3"
22
+
23
+ - label: ':ruby: Ruby 2.7 unit tests'
24
+ plugins:
25
+ docker-compose#v3.1.0:
26
+ run: ruby-unit-tests
27
+ use-aliases: true
28
+ env:
29
+ RUBY_TEST_VERSION: "2.7"
30
+ GEMSETS: "test sidekiq coverage"
31
+
32
+ - label: ':ruby: Ruby 2.7 linting'
33
+ plugins:
34
+ docker-compose#v3.1.0:
35
+ run: ruby-unit-tests
36
+ use-aliases: true
37
+ env:
38
+ RUBY_TEST_VERSION: "2.7"
39
+ GEMSETS: "test rubocop"
40
+ command: "bundle exec ./bin/rubocop lib/"
41
+
42
+ - label: ':ruby: Ruby 2.7 plain tests'
43
+ plugins:
44
+ docker-compose#v3.1.0:
45
+ run: ruby-maze-runner
46
+ use-aliases: true
47
+ command: ["features/plain_features/", "--tags", "not @wip"]
48
+ env:
49
+ RUBY_TEST_VERSION: "2.7"
50
+
51
+ - label: ':rails: Rails 6 Ruby 2.7 tests'
52
+ plugins:
53
+ docker-compose#v3.1.0:
54
+ run: ruby-maze-runner
55
+ use-aliases: true
56
+ command: ["features/rails_features/", "--tags", "@rails6 and not @wip"]
57
+ env:
58
+ RUBY_TEST_VERSION: "2.7"
59
+ RAILS_VERSION: "6"
60
+
61
+
62
+ - label: ':ruby: Delayed job tests'
63
+ plugins:
64
+ docker-compose#v3.1.0:
65
+ run: ruby-maze-runner
66
+ use-aliases: true
67
+ command: ["features/delayed_job.feature", "--tags", "not @wip"]
68
+ env:
69
+ RUBY_TEST_VERSION: "2.5"
70
+ concurrency: 8
71
+ concurrency_group: 'rails-tests'
72
+
73
+ - label: ':ruby: Sidekiq 5 tests'
74
+ plugins:
75
+ docker-compose#v3.1.0:
76
+ run: ruby-maze-runner
77
+ use-aliases: true
78
+ command: ["features/sidekiq.feature", "--tags", "not @wip"]
79
+ env:
80
+ RUBY_TEST_VERSION: "2.5"
81
+ SIDEKIQ_VERSION: "~> 5"
82
+
83
+ - block: "Trigger full test suite"
84
+
85
+ - label: ':ruby: JRuby unit tests'
86
+ plugins:
87
+ docker-compose#v3.1.0:
88
+ run: jruby-unit-tests
89
+ use-aliases: true
90
+ concurrency: 8
91
+ concurrency_group: 'rails-tests'
92
+
93
+ - label: ':ruby: Ruby 2.0 unit tests'
94
+ plugins:
95
+ docker-compose#v3.1.0:
96
+ run: ruby-unit-tests
97
+ use-aliases: true
98
+ env:
99
+ RUBY_TEST_VERSION: "2.0"
100
+ concurrency: 8
101
+ concurrency_group: 'rails-tests'
102
+
103
+ - label: ':ruby: Ruby 2.1 unit tests'
104
+ plugins:
105
+ docker-compose#v3.1.0:
106
+ run: ruby-unit-tests
107
+ use-aliases: true
108
+ env:
109
+ RUBY_TEST_VERSION: "2.1"
110
+ concurrency: 8
111
+ concurrency_group: 'rails-tests'
112
+
113
+ - label: ':ruby: Ruby 2.2 unit tests'
114
+ plugins:
115
+ docker-compose#v3.1.0:
116
+ run: ruby-unit-tests
117
+ use-aliases: true
118
+ env:
119
+ RUBY_TEST_VERSION: "2.2"
120
+ GEMSETS: "test sidekiq"
121
+ concurrency: 8
122
+ concurrency_group: 'rails-tests'
123
+
124
+ - label: ':ruby: Ruby 2.3 unit tests'
125
+ plugins:
126
+ docker-compose#v3.1.0:
127
+ run: ruby-unit-tests
128
+ use-aliases: true
129
+ env:
130
+ RUBY_TEST_VERSION: "2.3"
131
+ GEMSETS: "test sidekiq"
132
+ concurrency: 8
133
+ concurrency_group: 'rails-tests'
134
+
135
+ - label: ':ruby: Ruby 2.4 unit tests'
136
+ plugins:
137
+ docker-compose#v3.1.0:
138
+ run: ruby-unit-tests
139
+ use-aliases: true
140
+ env:
141
+ RUBY_TEST_VERSION: "2.4"
142
+ GEMSETS: "test sidekiq"
143
+ concurrency: 8
144
+ concurrency_group: 'rails-tests'
145
+
146
+ - label: ':ruby: Ruby 2.5 unit tests'
147
+ plugins:
148
+ docker-compose#v3.1.0:
149
+ run: ruby-unit-tests
150
+ use-aliases: true
151
+ env:
152
+ RUBY_TEST_VERSION: "2.5"
153
+ GEMSETS: "test sidekiq"
154
+ concurrency: 8
155
+ concurrency_group: 'rails-tests'
156
+
157
+ - label: ':ruby: Ruby 2.6 unit tests'
158
+ plugins:
159
+ docker-compose#v3.1.0:
160
+ run: ruby-unit-tests
161
+ use-aliases: true
162
+ env:
163
+ RUBY_TEST_VERSION: "2.6"
164
+ GEMSETS: "test sidekiq"
165
+ concurrency: 8
166
+ concurrency_group: 'rails-tests'
167
+
168
+ - label: ':ruby: Ruby 1.9.3 plain tests'
169
+ plugins:
170
+ docker-compose#v3.1.0:
171
+ run: ruby-maze-runner
172
+ use-aliases: true
173
+ command: ["features/plain_features", "--tags", "not @wip"]
174
+ env:
175
+ RUBY_TEST_VERSION: "1.9.3"
176
+ concurrency: 8
177
+ concurrency_group: 'rails-tests'
178
+
179
+ - label: ':ruby: Ruby 2.0 plain tests'
180
+ plugins:
181
+ docker-compose#v3.1.0:
182
+ run: ruby-maze-runner
183
+ use-aliases: true
184
+ command: ["features/plain_features", "--tags", "not @wip"]
185
+ env:
186
+ RUBY_TEST_VERSION: "2.0"
187
+ concurrency: 8
188
+ concurrency_group: 'rails-tests'
189
+
190
+ - label: ':ruby: Ruby 2.1 plain tests'
191
+ plugins:
192
+ docker-compose#v3.1.0:
193
+ run: ruby-maze-runner
194
+ use-aliases: true
195
+ command: ["features/plain_features", "--tags", "not @wip"]
196
+ env:
197
+ RUBY_TEST_VERSION: "2.1"
198
+ concurrency: 8
199
+ concurrency_group: 'rails-tests'
200
+
201
+ - label: ':ruby: Ruby 2.2 plain tests'
202
+ plugins:
203
+ docker-compose#v3.1.0:
204
+ run: ruby-maze-runner
205
+ use-aliases: true
206
+ command: ["features/plain_features", "--tags", "not @wip"]
207
+ env:
208
+ RUBY_TEST_VERSION: "2.2"
209
+ concurrency: 8
210
+ concurrency_group: 'rails-tests'
211
+
212
+ - label: ':ruby: Ruby 2.3 plain tests'
213
+ plugins:
214
+ docker-compose#v3.1.0:
215
+ run: ruby-maze-runner
216
+ use-aliases: true
217
+ command: ["features/plain_features", "--tags", "not @wip"]
218
+ env:
219
+ RUBY_TEST_VERSION: "2.3"
220
+ concurrency: 8
221
+ concurrency_group: 'rails-tests'
222
+
223
+ - label: ':ruby: Ruby 2.4 plain tests'
224
+ plugins:
225
+ docker-compose#v3.1.0:
226
+ run: ruby-maze-runner
227
+ use-aliases: true
228
+ command: ["features/plain_features", "--tags", "not @wip"]
229
+ env:
230
+ RUBY_TEST_VERSION: "2.4"
231
+ concurrency: 8
232
+ concurrency_group: 'rails-tests'
233
+
234
+ - label: ':ruby: Ruby 2.5 plain tests'
235
+ plugins:
236
+ docker-compose#v3.1.0:
237
+ run: ruby-maze-runner
238
+ use-aliases: true
239
+ command: ["features/plain_features", "--tags", "not @wip"]
240
+ env:
241
+ RUBY_TEST_VERSION: "2.5"
242
+ concurrency: 8
243
+ concurrency_group: 'rails-tests'
244
+
245
+ - label: ':ruby: Ruby 2.6 plain tests'
246
+ plugins:
247
+ docker-compose#v3.1.0:
248
+ run: ruby-maze-runner
249
+ use-aliases: true
250
+ command: ["features/plain_features/", "--tags", "not @wip"]
251
+ env:
252
+ RUBY_TEST_VERSION: "2.6"
253
+ concurrency: 8
254
+ concurrency_group: 'rails-tests'
255
+
256
+ - label: ':ruby: Sidekiq 2 tests'
257
+ plugins:
258
+ docker-compose#v3.1.0:
259
+ run: ruby-maze-runner
260
+ use-aliases: true
261
+ command: ["features/sidekiq.feature", "--tags", "not @wip"]
262
+ env:
263
+ RUBY_TEST_VERSION: "2.5"
264
+ SIDEKIQ_VERSION: "~> 2"
265
+ concurrency: 8
266
+ concurrency_group: 'rails-tests'
267
+
268
+ - label: ':ruby: Sidekiq 3 tests'
269
+ plugins:
270
+ docker-compose#v3.1.0:
271
+ run: ruby-maze-runner
272
+ use-aliases: true
273
+ command: ["features/sidekiq.feature", "--tags", "not @wip"]
274
+ env:
275
+ RUBY_TEST_VERSION: "2.5"
276
+ SIDEKIQ_VERSION: "~> 3"
277
+ concurrency: 8
278
+ concurrency_group: 'rails-tests'
279
+
280
+ - label: ':ruby: Sidekiq 4 tests'
281
+ plugins:
282
+ docker-compose#v3.1.0:
283
+ run: ruby-maze-runner
284
+ use-aliases: true
285
+ command: ["features/sidekiq.feature", "--tags", "not @wip"]
286
+ env:
287
+ RUBY_TEST_VERSION: "2.5"
288
+ SIDEKIQ_VERSION: "~> 4"
289
+ concurrency: 8
290
+ concurrency_group: 'rails-tests'
291
+
292
+ - label: ':rails: Rails 3 Ruby 2.0 tests'
293
+ plugins:
294
+ docker-compose#v3.1.0:
295
+ run: ruby-maze-runner
296
+ use-aliases: true
297
+ command: ["features/rails_features/", "--tags", "@rails3 and not @wip"]
298
+ env:
299
+ RUBY_TEST_VERSION: "2.0"
300
+ RAILS_VERSION: "3"
301
+ concurrency: 8
302
+ concurrency_group: 'rails-tests'
303
+
304
+ - label: ':rails: Rails 3 Ruby 2.1 tests'
305
+ plugins:
306
+ docker-compose#v3.1.0:
307
+ run: ruby-maze-runner
308
+ use-aliases: true
309
+ command: ["features/rails_features/", "--tags", "@rails3 and not @wip"]
310
+ env:
311
+ RUBY_TEST_VERSION: "2.1"
312
+ RAILS_VERSION: "3"
313
+ concurrency: 8
314
+ concurrency_group: 'rails-tests'
315
+
316
+ - label: ':rails: Rails 3 Ruby 2.2 tests'
317
+ plugins:
318
+ docker-compose#v3.1.0:
319
+ run: ruby-maze-runner
320
+ use-aliases: true
321
+ command: ["features/rails_features/", "--tags", "@rails3 and not @wip"]
322
+ env:
323
+ RUBY_TEST_VERSION: "2.2"
324
+ RAILS_VERSION: "3"
325
+ concurrency: 8
326
+ concurrency_group: 'rails-tests'
327
+
328
+ - label: ':rails: Rails 3 Ruby 2.3 tests'
329
+ plugins:
330
+ docker-compose#v3.1.0:
331
+ run: ruby-maze-runner
332
+ use-aliases: true
333
+ command: ["features/rails_features/", "--tags", "@rails3 and not @wip"]
334
+ env:
335
+ RUBY_TEST_VERSION: "2.3"
336
+ RAILS_VERSION: "3"
337
+ concurrency: 8
338
+ concurrency_group: 'rails-tests'
339
+
340
+ - label: ':rails: Rails 3 Ruby 2.4 tests'
341
+ plugins:
342
+ docker-compose#v3.1.0:
343
+ run: ruby-maze-runner
344
+ use-aliases: true
345
+ command: ["features/rails_features/", "--tags", "@rails3 and not @wip"]
346
+ env:
347
+ RUBY_TEST_VERSION: "2.4"
348
+ RAILS_VERSION: "3"
349
+ concurrency: 8
350
+ concurrency_group: 'rails-tests'
351
+
352
+ - label: ':rails: Rails 3 Ruby 2.5 tests'
353
+ plugins:
354
+ docker-compose#v3.1.0:
355
+ run: ruby-maze-runner
356
+ use-aliases: true
357
+ command: ["features/rails_features/", "--tags", "@rails3 and not @wip"]
358
+ env:
359
+ RUBY_TEST_VERSION: "2.5"
360
+ RAILS_VERSION: "3"
361
+ concurrency: 8
362
+ concurrency_group: 'rails-tests'
363
+
364
+ - label: ':rails: Rails 4 Ruby 2.2 tests'
365
+ plugins:
366
+ docker-compose#v3.1.0:
367
+ run: ruby-maze-runner
368
+ use-aliases: true
369
+ command: ["features/rails_features/", "--tags", "@rails4 and not @wip"]
370
+ env:
371
+ RUBY_TEST_VERSION: "2.2"
372
+ RAILS_VERSION: "4"
373
+ concurrency: 8
374
+ concurrency_group: 'rails-tests'
375
+
376
+ - label: ':rails: Rails 4 Ruby 2.3 tests'
377
+ plugins:
378
+ docker-compose#v3.1.0:
379
+ run: ruby-maze-runner
380
+ use-aliases: true
381
+ command: ["features/rails_features/", "--tags", "@rails4 and not @wip"]
382
+ env:
383
+ RUBY_TEST_VERSION: "2.3"
384
+ RAILS_VERSION: "4"
385
+ concurrency: 8
386
+ concurrency_group: 'rails-tests'
387
+
388
+ - label: ':rails: Rails 5 Ruby 2.2 tests'
389
+ plugins:
390
+ docker-compose#v3.1.0:
391
+ run: ruby-maze-runner
392
+ use-aliases: true
393
+ command: ["features/rails_features/", "--tags", "@rails5 and not @wip"]
394
+ env:
395
+ RUBY_TEST_VERSION: "2.2"
396
+ RAILS_VERSION: "5"
397
+ concurrency: 8
398
+ concurrency_group: 'rails-tests'
399
+
400
+ - label: ':rails: Rails 5 Ruby 2.3 tests'
401
+ plugins:
402
+ docker-compose#v3.1.0:
403
+ run: ruby-maze-runner
404
+ use-aliases: true
405
+ command: ["features/rails_features/", "--tags", "@rails5 and not @wip"]
406
+ env:
407
+ RUBY_TEST_VERSION: "2.3"
408
+ RAILS_VERSION: "5"
409
+ concurrency: 8
410
+ concurrency_group: 'rails-tests'
411
+
412
+ - label: ':rails: Rails 5 Ruby 2.4 tests'
413
+ plugins:
414
+ docker-compose#v3.1.0:
415
+ run: ruby-maze-runner
416
+ use-aliases: true
417
+ command: ["features/rails_features/", "--tags", "@rails5 and not @wip"]
418
+ env:
419
+ RUBY_TEST_VERSION: "2.4"
420
+ RAILS_VERSION: "5"
421
+ concurrency: 8
422
+ concurrency_group: 'rails-tests'
423
+
424
+ - label: ':rails: Rails 5 Ruby 2.5 tests'
425
+ plugins:
426
+ docker-compose#v3.1.0:
427
+ run: ruby-maze-runner
428
+ use-aliases: true
429
+ command: ["features/rails_features/", "--tags", "@rails5 and not @wip"]
430
+ env:
431
+ RUBY_TEST_VERSION: "2.5"
432
+ RAILS_VERSION: "5"
433
+ concurrency: 8
434
+ concurrency_group: 'rails-tests'
435
+
436
+ - label: ':rails: Rails 5 Ruby 2.6 tests'
437
+ plugins:
438
+ docker-compose#v3.1.0:
439
+ run: ruby-maze-runner
440
+ use-aliases: true
441
+ command: ["features/rails_features/", "--tags", "@rails5 and not @wip"]
442
+ env:
443
+ RUBY_TEST_VERSION: "2.6"
444
+ RAILS_VERSION: "5"
445
+ concurrency: 8
446
+ concurrency_group: 'rails-tests'
447
+
448
+ - label: ':rails: Rails 6 Ruby 2.5 tests'
449
+ plugins:
450
+ docker-compose#v3.1.0:
451
+ run: ruby-maze-runner
452
+ use-aliases: true
453
+ command: ["features/rails_features/", "--tags", "@rails6 and not @wip"]
454
+ env:
455
+ RUBY_TEST_VERSION: "2.5"
456
+ RAILS_VERSION: "6"
457
+ concurrency: 8
458
+ concurrency_group: 'rails-tests'
459
+
460
+ - label: ':rails: Rails 6 Ruby 2.6 tests'
461
+ plugins:
462
+ docker-compose#v3.1.0:
463
+ run: ruby-maze-runner
464
+ use-aliases: true
465
+ command: ["features/rails_features/", "--tags", "@rails6 and not @wip"]
466
+ env:
467
+ RUBY_TEST_VERSION: "2.6"
468
+ RAILS_VERSION: "6"
469
+ concurrency: 8
470
+ concurrency_group: 'rails-tests'