gitarro 0.1.89 → 0.1.90
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/lib/gitarro/backend.rb +3 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48d7832bcbc6c56fab557674f2a1e07f818e722336a59cb41a4f07e61347a681
|
|
4
|
+
data.tar.gz: 9b5f7d470df5272cce88eb75759c5fc7ffbfca11dad31a3432a443f3e8b3d383
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ae864da47e9354ab1e4f9ed37df261f9aefc39427312066a9b8804f565a5fc4964d4c054ccc1feb97674392031e64d79cce537a887f67124500b082465fc49a
|
|
7
|
+
data.tar.gz: e2dc4e14a6e023314d86b923aa17ce9873ea37d9c3be815a83aad412276aba018478b63356d47fec25c3bb4c2d2cb98e09ec8ca46502fd2f5a3f65b254ffe590
|
data/lib/gitarro/backend.rb
CHANGED
|
@@ -275,6 +275,9 @@ class Backend
|
|
|
275
275
|
def retriggered_by_checkbox?(pr, context)
|
|
276
276
|
return false if pr.body.nil? || !pr.body.match(/\[x\]\s+Re-run\s+test\s+"#{context}"/i)
|
|
277
277
|
|
|
278
|
+
# In check mode, don't uncheck the box as that would prevent a next gitarro run to actually run the test
|
|
279
|
+
return true if @check
|
|
280
|
+
|
|
278
281
|
skipped = ''
|
|
279
282
|
unless empty_files_changed_by_pr?(pr)
|
|
280
283
|
skipped = '(Test skipped, there are no changes to test)'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitarro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.90
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dario Maiocchi
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -195,7 +195,7 @@ licenses:
|
|
|
195
195
|
- MIT
|
|
196
196
|
metadata:
|
|
197
197
|
changelog_uri: https://github.com/openSUSE/gitarro/blob/master/CHANGELOG.md
|
|
198
|
-
post_install_message:
|
|
198
|
+
post_install_message:
|
|
199
199
|
rdoc_options: []
|
|
200
200
|
require_paths:
|
|
201
201
|
- lib
|
|
@@ -210,8 +210,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
210
210
|
- !ruby/object:Gem::Version
|
|
211
211
|
version: '0'
|
|
212
212
|
requirements: []
|
|
213
|
-
rubygems_version: 3.
|
|
214
|
-
signing_key:
|
|
213
|
+
rubygems_version: 3.3.7
|
|
214
|
+
signing_key:
|
|
215
215
|
specification_version: 4
|
|
216
216
|
summary: gitarro gem
|
|
217
217
|
test_files: []
|