We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb497cc commit ba2cfa9Copy full SHA for ba2cfa9
2 files changed
.github/workflows/ci.yml
@@ -22,7 +22,7 @@ jobs:
22
runs-on: ubuntu-latest
23
env:
24
CI: true
25
- ALLOW_FAILURES: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'jruby' }}
+ ALLOW_FAILURES: false # ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'jruby' }}
26
strategy:
27
fail-fast: false
28
matrix:
spec/model_literal_spec.rb
@@ -471,7 +471,7 @@ def self.literals(*selector)
471
end
472
473
474
- describe "#**" do
+ describe "#**", skip: (RUBY_ENGINE == "jruby") do
475
{
476
"2^3": [2, 3, 8],
477
"-2^3": [-2, 3, -8],
0 commit comments