Skip to content

Commit

Permalink
Exclude Windows from encrypted SSL key tests
Browse files Browse the repository at this point in the history
shell scripts can't be executed in Windows, so let's
not bother.
  • Loading branch information
stanhu committed Apr 29, 2023
1 parent 8cf9ce2 commit 80d9c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_integration_ssl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_ssl_run_with_localhost_authority
end

def test_ssl_run_with_encrypted_key
skip_if :jruby
skip_if :jruby, :windows

config = <<RUBY
key_path = '#{File.expand_path '../examples/puma/encrypted_puma_keypair.pem', __dir__}'
Expand Down Expand Up @@ -222,7 +222,7 @@ def test_ssl_run_with_encrypted_key
end

def test_ssl_run_with_encrypted_pem
skip_if :jruby
skip_if :jruby, :windows

config = <<RUBY
key_path = '#{File.expand_path '../examples/puma/encrypted_puma_keypair.pem', __dir__}'
Expand Down

0 comments on commit 80d9c02

Please sign in to comment.