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

Commit b020ad3

Browse files
committed
Remove Appveyor
1 parent 1f735bd commit b020ad3

File tree

4 files changed

+6
-54
lines changed

4 files changed

+6
-54
lines changed

appveyor.yml

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

spec/integration/bisect_spec.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ module RSpec::Core
44
RSpec.describe "Bisect", :slow, :simulate_shell_allowing_unquoted_ids do
55
include FormatterSupport
66

7-
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
10-
117
def bisect(cli_args, expected_status=nil)
128
options = ConfigurationOptions.new(cli_args)
139

spec/rspec/core/configuration_spec.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,7 @@ 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
541539
dir = File.expand_path("../resources", __FILE__)
542540
config.pattern = File.join(dir, "**/*_spec.rb")
543541
assign_files_or_directories_to_run "spec"
@@ -618,7 +616,8 @@ def stub_expectation_adapters
618616
expect(config.files_to_run).to contain_files("C:/path/to/project/spec/sub/foo_spec.rb")
619617
end
620618

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

spec/rspec/core/rake_task_spec.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,7 @@ 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
314312
dir = File.expand_path("../resources", __FILE__)
315313
task.pattern = File.join(dir, "**/*_spec.rb")
316314

@@ -443,7 +441,8 @@ def make_files_in_dir(dir)
443441
context "with paths with quotes or spaces" do
444442
include_context "isolated directory"
445443

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

0 commit comments

Comments
 (0)