judges 0.50.7 → 0.51.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.
@@ -75,8 +75,12 @@ class TestPrint < Minitest::Test
75
75
  refute_empty(xml.xpath('/html'), xml)
76
76
  WebMock.enable_net_connect!
77
77
  skip('We are offline') unless online?
78
- v = W3CValidators::NuValidator.new.validate_file(html)
79
- assert_empty(v.errors, "#{doc}\n\n#{v.errors.join('; ')}")
78
+ begin
79
+ v = W3CValidators::NuValidator.new.validate_file(html)
80
+ assert_empty(v.errors, "#{doc}\n\n#{v.errors.join('; ')}")
81
+ rescue W3CValidators::ValidatorUnavailable
82
+ skip('Cloud validator is too busy')
83
+ end
80
84
  end
81
85
 
82
86
  def test_html_table_has_colgroup
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: judges
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.7
4
+ version: 0.51.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko