ruby - On Travis how do I modify tests to use minitest instead of rspec? -
the link ask question on travis dot com sent me here. tests fail because i'm using minitest in gem travis uses rspec. there way travis also? of course can modify tests use rspec i'm not sure how tests or spec structure of tests. have assert_equal not recognized respec valid method. there common way make either test work same *_spec.rb files?
i found in the docs possible define custom commands running tests (rather default bundle exec rake test
) placing these lines in .travis.yml
script: - bundle exec rake build - bundle exec rake builddoc
Comments
Post a Comment