Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix skipped tests #236

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
test:
name: Specs
runs-on: ubuntu-latest
continue-on-error: true
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
Expand Down
3 changes: 0 additions & 3 deletions spec/active_storage/rails_app_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ def skip_reason
'Skipping because JRuby have randon failing issue'
elsif RUBY_VERSION.to_f < 2.5
'Skipping because Rails testing script use Rails 6, who does not support Ruby bellow 2.5'
else
'Skipping because this test randomly started failing for every version - mismatching default gem versions.'
end
end

# TODO: Investigate and fix this test
describe 'Rails app with ActiveStorage and format-parser', skip: skip_reason do
describe 'local hosting with ActiveStorage disk adapter' do
it 'parse local file with format_parser' do
Expand Down