From 8e6f350fa66a78fe096064681fcc8651e923da3f Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: Tue, 13 Feb 2024 14:08:24 -0600 Subject: [PATCH] Try to isolate sad test --- .github/workflows/unit_tests.yaml | 46 +++++++++++++++---------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 257057cb91..a671797076 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -13,35 +13,35 @@ env: CI: true jobs: - linux_unit_tests: - name: Ruby version - strategy: - matrix: - ruby: - - '2.6' - - '2.7' - - '3.0' - - '3.2' - - 'jruby-9.3.9.0' - runs-on: ubuntu-20.04 - steps: - - name: Checkout current PR - uses: actions/checkout@v4 + #linux_unit_tests: + # name: Ruby version + # strategy: + # matrix: + # ruby: + # - '2.6' + # - '2.7' + # - '3.0' + # - '3.2' + # - 'jruby-9.3.9.0' + # runs-on: ubuntu-20.04 + # steps: + # - name: Checkout current PR + # uses: actions/checkout@v4 - - name: Rspec checks - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - - run: gem update bundler - - run: bundle install --jobs 3 --retry 3 - - run: bundle exec rake spec_random + # - name: Rspec checks + # uses: ruby/setup-ruby@v1 + # with: + # ruby-version: ${{ matrix.ruby }} + # - run: gem update bundler + # - run: bundle install --jobs 3 --retry 3 + # - run: bundle exec rake spec_random windows_unit_tests: name: Windows tests with Ruby ${{ matrix.ruby }} strategy: matrix: ruby: - - '2.7' + # - '2.7' - '3.2' runs-on: windows-2019 steps: @@ -54,4 +54,4 @@ jobs: ruby-version: ${{ matrix.ruby }} - run: gem update bundler - run: bundle install --jobs 3 --retry 3 - - run: bundle exec rake spec_random + - run: bundle exec rspec --bisect --order random:12882 spec