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

Commit 1fb1737

Browse files
committed
Remove Appveyor
1 parent 1f735bd commit 1fb1737

File tree

4 files changed

+10
-52
lines changed

4 files changed

+10
-52
lines changed

appveyor.yml

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

spec/integration/bisect_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module RSpec::Core
55
include FormatterSupport
66

77
before do
8-
skip "These specs do not consistently pass or fail on AppVeyor on Ruby 2.1+"
9-
end if ENV['APPVEYOR'] && RUBY_VERSION.to_f > 2.0
8+
pending "Fails or does not consistently pass on Windows for some reason yet to be discovered" if RSpec::Support::OS.windows?
9+
end
1010

1111
def bisect(cli_args, expected_status=nil)
1212
options = ConfigurationOptions.new(cli_args)

spec/rspec/core/configuration_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,8 @@ def stub_expectation_adapters
535535
expect(config.files_to_run).to contain_files("./spec/rspec/core/resources/a_spec.rb")
536536
end
537537

538-
it "supports absolute path patterns", :failing_on_appveyor,
539-
:pending => false,
540-
:skip => (ENV['APPVEYOR'] ? "Failing on AppVeyor but :pending isn't working for some reason" : false) do
538+
it "supports absolute path patterns" do
539+
pending "Fails on Windows for some reason yet to be discovered" if RSpec::Support::OS.windows?
541540
dir = File.expand_path("../resources", __FILE__)
542541
config.pattern = File.join(dir, "**/*_spec.rb")
543542
assign_files_or_directories_to_run "spec"
@@ -618,7 +617,8 @@ def stub_expectation_adapters
618617
expect(config.files_to_run).to contain_files("C:/path/to/project/spec/sub/foo_spec.rb")
619618
end
620619

621-
it "loads files in Windows when directory is specified", :failing_on_appveyor, :if => RSpec::Support::OS.windows? do
620+
it "loads files in Windows when directory is specified", :if => RSpec::Support::OS.windows? do
621+
pending "Fails for some reason yet to be discovered"
622622
assign_files_or_directories_to_run "spec\\rspec\\core\\resources"
623623
expect(config.files_to_run).to contain_files("spec/rspec/core/resources/a_spec.rb")
624624
end

spec/rspec/core/rake_task_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,8 @@ def self.it_configures_rspec_load_path(description, path_template)
308308
end
309309

310310
context "that is an absolute path file glob" do
311-
it "loads the matching spec files", :failing_on_appveyor,
312-
:pending => false,
313-
:skip => (ENV['APPVEYOR'] ? "Failing on AppVeyor but :pending isn't working for some reason" : false) do
311+
it "loads the matching spec files" do
312+
pending "Fails on Windows for some reason yet to be discovered" if RSpec::Support::OS.windows?
314313
dir = File.expand_path("../resources", __FILE__)
315314
task.pattern = File.join(dir, "**/*_spec.rb")
316315

@@ -443,7 +442,8 @@ def make_files_in_dir(dir)
443442
context "with paths with quotes or spaces" do
444443
include_context "isolated directory"
445444

446-
it "matches files with quotes and spaces", :failing_on_appveyor do
445+
it "matches files with quotes and spaces" do
446+
pending "Fails on Windows for some reason yet to be discovered" if RSpec::Support::OS.windows?
447447
spec_dir = File.join(Dir.getwd, "spec")
448448
task.pattern = "spec/*spec.rb"
449449
FileUtils.mkdir_p(spec_dir)

0 commit comments

Comments
 (0)