Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Fix up ruby tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kddnewton committed Apr 14, 2019
1 parent 03090ee commit 0f3a989
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ script:
- yarn build
- gem build prettier.gemspec
- bundle exec rake test
- bundle exec rbprettier --check 'src/ripper.rb' 'lib/**/*.rb' 'test/*_test.rb' 'prettier.gemspec'
- bundle exec rbprettier --check 'src/ripper.rb' 'lib/**/*.rb' 'test/rb/*_test.rb' 'prettier.gemspec'
cache:
- bundler
- yarn
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ require 'bundler/gem_tasks'
require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
t.libs << 'test'
t.libs << 'test/rb'
t.libs << 'lib'
t.test_files = FileList['test/**/*_test.rb']
t.test_files = FileList['test/rb/**/*_test.rb']
end

task default: :test

0 comments on commit 0f3a989

Please sign in to comment.