rspecq 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4337137edc0f3ee2c22d4f9cd2547ab31d4ddc0b043b49848c7b513ae98094a9
4
- data.tar.gz: 6de02e1ce31cb7dff6af9d4862f1dceebfbfbbd10063329c9d3d058d32bf8f06
3
+ metadata.gz: e8bcc40eeeccb4d94e795f524f7f6bce73454a25ebb1907c58523e7e775740a7
4
+ data.tar.gz: 93d9aa04b32ef60c430c505fb7cd4d147ca2e106be442ebd5f6bd18221db4841
5
5
  SHA512:
6
- metadata.gz: beb1b013a1d78e8c18b473ef33d286224a92ef46ae3944f99296cc3d2d13193309b0efb020307fa3e9139b7fd88eb9a9111ad526026762ccf0b17ba892b3ddb4
7
- data.tar.gz: 178481fe5b707cefa25426ec6b2ead691dd69494a6b9869eaf8e438b78e100c5dd8c0c9caab2dd4b792c18e5c931e4e7231cc971b77fa048c14420f33978fe2a
6
+ metadata.gz: 80b3eea41c65a3f759c895c0aaf9895c67b4fd2d4c57acb3b8d193fa2522e654735eed33f96a1800a34d5471e5ed83768c2d2c1a31c8a6975c16673f3aaffa79
7
+ data.tar.gz: dfe2e954fc0d83be7da5bd4c3b24c236950ac6f088ec6a46284954c5e49609c8dea6e15222ccbf5d9d1be353f28671a61e68a04d90bd4b19fb791b2acae685fd
data/CHANGELOG.md CHANGED
@@ -4,7 +4,12 @@ Breaking changes are prefixed with a "[BREAKING]" label.
4
4
 
5
5
  ## master (unreleased)
6
6
 
7
- ## 0.7.0 (2021-04-1)
7
+ ## 0.7.1 (2021-04-08)
8
+
9
+ - New env variable RSPECQ_REPORTER_RERUN_COMMAND_SKIP. When set, the reporter
10
+ does not include the flaky test's rerun command.
11
+
12
+ ## 0.7.0 (2021-04-01)
8
13
 
9
14
  - New cli parameter `reproduction`.
10
15
  When passed, primary worker publishes the queue in the same order as passed
data/README.md CHANGED
@@ -103,6 +103,7 @@ $ RSPECQ_BUILD=123 RSPECQ_WORKDER=foo1 rspecq spec/
103
103
  | `RSPECQ_QUEUE_WAIT_TIMEOUT` | Queue wait timeout |
104
104
  | `RSPECQ_REDIS_URL` | Redis URL |
105
105
  | `RSPECQ_FAIL_FAST` | Fail fast |
106
+ | `RSPECQ_REPORTER_RERUN_COMMAND_SKIP` | Do not report flaky test's rerun command |
106
107
 
107
108
  ### Sentry integration
108
109
 
@@ -113,6 +113,8 @@ module RSpecQ
113
113
  RSpec.configuration.pending_color
114
114
  )
115
115
 
116
+ next if ENV["RSPECQ_REPORTER_RERUN_COMMAND_SKIP"]
117
+
116
118
  summary << "#{@queue.job_rerun_command(j)}\n\n\n"
117
119
  end
118
120
  end
@@ -1,3 +1,3 @@
1
1
  module RSpecQ
2
- VERSION = "0.7.0".freeze
2
+ VERSION = "0.7.1".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspecq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agis Anastasopoulos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-01 00:00:00.000000000 Z
11
+ date: 2021-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-core