From 28db79d75afea76315222b0f501f507cae0ee511 Mon Sep 17 00:00:00 2001 From: Corey Hemminger Date: Fri, 21 Jun 2024 12:39:31 -0500 Subject: [PATCH] test Signed-off-by: Corey Hemminger --- .github/workflows/lint.yml | 3 +++ test/integration/default/disabled/default_spec.rb | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4d15274..69ea0f4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,6 +9,7 @@ jobs: uses: test-kitchen/.github/.github/workflows/lint-unit.yml@main integration-windows: + name: Windows ${{matrix.suite}} ${{matrix.os}} runs-on: windows-latest needs: lint-unit strategy: @@ -28,6 +29,7 @@ jobs: - run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} integration-linux: + name: Linux ${{matrix.suite}} ${{matrix.os}} runs-on: ubuntu-latest needs: lint-unit strategy: @@ -63,6 +65,7 @@ jobs: - run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} integration-capabilities: + name: Linux ${{matrix.suite}} ${{matrix.os}} runs-on: ubuntu-latest needs: lint-unit strategy: diff --git a/test/integration/default/disabled/default_spec.rb b/test/integration/default/disabled/default_spec.rb index 3e55eba..2d0dbda 100644 --- a/test/integration/default/disabled/default_spec.rb +++ b/test/integration/default/disabled/default_spec.rb @@ -15,10 +15,10 @@ # # Disable now busser-server is gone. -require 'serverspec' -require 'spec_helper' +require "serverspec" +require "spec_helper" # # Just make sure the image launched and is reachable. -describe command('true') do +describe command("true") do its(:exit_status) { is_expected.to eq 0 } end