Skip to content

Commit

Permalink
Merge pull request #446 from lacostej/fix/drop_circle
Browse files Browse the repository at this point in the history
[CI] Drop Circle now that we use github since 532bb27
  • Loading branch information
lacostej authored Oct 29, 2024
2 parents 31adcf9 + 728391d commit 41b0106
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 96 deletions.
87 changes: 0 additions & 87 deletions .circleci/config.yml

This file was deleted.

11 changes: 2 additions & 9 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,8 @@ end
desc 'Run all rspec tests'
task :test_all do
formatter = "--format progress"
if ENV["CIRCLECI"]
Dir.mkdir("/tmp/rspec/")
formatter += " -r rspec_junit_formatter --format RspecJunitFormatter -o /tmp/rspec/rspec.xml"
TEST_FILES = `(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)`.tr!("\n", ' ')
rspec_args = "#{formatter} #{TEST_FILES}"
else
formatter += ' --pattern "./spec/**/*_spec.rb"'
rspec_args = formatter
end
formatter += ' --pattern "./spec/**/*_spec.rb"'
rspec_args = formatter
sh "rspec #{rspec_args}"
end

Expand Down

0 comments on commit 41b0106

Please sign in to comment.