Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 13a9d71

Browse files
committed
Remove Appveyor
1 parent 11edb93 commit 13a9d71

File tree

5 files changed

+6
-53
lines changed

5 files changed

+6
-53
lines changed

appveyor.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

lib/rspec/support/spec.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@
3535
c.filter_run_when_matching :focus
3636

3737
c.example_status_persistence_file_path = "./spec/examples.txt"
38-
39-
c.define_derived_metadata :failing_on_appveyor do |meta|
40-
meta[:pending] ||= "This spec fails on AppVeyor and needs someone to fix it."
41-
end if ENV['APPVEYOR']
4238
end
4339

4440
module RSpec

spec/rspec/support/differ_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def differ_ivars
155155
expect(diff).to be_diffed_as(expected_diff)
156156
end
157157

158-
it 'uses the default external encoding when the two strings have incompatible encodings', :failing_on_appveyor do
158+
it 'uses the default external encoding when the two strings have incompatible encodings' do
159159
expected = "Tu avec carte {count} item has\n"
160160
actual = "Tu avec carté {count} itém has\n".encode('UTF-16LE')
161161
expected_diff = "\n@@ #{one_line_header} @@\n-Tu avec carte {count} item has\n+Tu avec carté {count} itém has\n"
@@ -312,7 +312,7 @@ def inspect; "<BrokenObject>"; end
312312
end
313313
end
314314

315-
it 'outputs unified diff message of two hashes with differing encoding', :failing_on_appveyor do
315+
it 'outputs unified diff message of two hashes with differing encoding' do
316316
expected_diff = dedent(<<-"EOD")
317317
|
318318
|@@ #{one_line_header} @@
@@ -325,7 +325,7 @@ def inspect; "<BrokenObject>"; end
325325
expect(diff).to be_diffed_as(expected_diff)
326326
end
327327

328-
it 'outputs unified diff message of two hashes with encoding different to key encoding', :failing_on_appveyor do
328+
it 'outputs unified diff message of two hashes with encoding different to key encoding' do
329329
expected_diff = dedent(<<-"EOD")
330330
|
331331
|@@ #{one_line_header} @@

spec/rspec/support/directory_maker_spec.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ def directory_exists?(dirname)
2828
context "when a file already exists" do
2929
before { File.open("tmp", "w") }
3030

31-
it "raises, as it can't make the directory", :failing_on_appveyor,
32-
:pending => false,
33-
:skip => (ENV['APPVEYOR'] ? "Failing on AppVeyor but :pending isn't working for some reason" : false) do
31+
it "raises, as it can't make the directory" do
32+
pending "Fails on Windows for some reason yet to be discovered" if RSpec::Support::OS.windows?
3433
expect {
3534
mkdir_p.call(dirname)
3635
}.to raise_error(Errno::EEXIST)

spec/rspec/support/spec/stderr_splitter_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# On 2.2, there's a weird issue where stderr sometimes responds to `birthtime` and sometimes doesn't...
3232
stderr_methods -= [:birthtime] if RUBY_VERSION =~ /^2\.2/
3333

34-
# No idea why, but on our AppVeyor windows builds it doesn't respond to these...
34+
# No idea why, but on our windows builds it doesn't respond to these...
3535
stderr_methods -= [:close_on_exec?, :close_on_exec=] if RSpec::Support::OS.windows?
3636

3737
expect(splitter).to respond_to(*stderr_methods)

0 commit comments

Comments
 (0)