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 +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -0
- data/lib/rspecq/reporter.rb +2 -0
- data/lib/rspecq/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8bcc40eeeccb4d94e795f524f7f6bce73454a25ebb1907c58523e7e775740a7
|
|
4
|
+
data.tar.gz: 93d9aa04b32ef60c430c505fb7cd4d147ca2e106be442ebd5f6bd18221db4841
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
|
data/lib/rspecq/reporter.rb
CHANGED
data/lib/rspecq/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2021-04-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec-core
|