Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Corey Hemminger <[email protected]>
  • Loading branch information
Stromweld committed Jun 21, 2024
1 parent 28db79d commit b1c904a
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
bundler-cache: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} -l debug

integration-linux:
name: Linux ${{matrix.suite}} ${{matrix.os}}
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} -l debug

integration-capabilities:
name: Linux ${{matrix.suite}} ${{matrix.os}}
Expand All @@ -83,4 +83,4 @@ jobs:
bundler-cache: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} -l debug
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.0.0"
".": "3.2.0"
}
2 changes: 1 addition & 1 deletion kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ provisioner:
name: dummy

platforms:
- name: amazonlinux-2023
- name: amazonlinux-2
- name: ubuntu-22.04
- name: ubuntu-24.04
- name: fedora-latest
Expand Down
4 changes: 2 additions & 2 deletions lib/kitchen/transport/docker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@

require_relative "../docker/helpers/inspec_helper"

require_relative "../../docker/version"
# require_relative "../../docker/version"
require_relative "../../train/docker"

module Kitchen
module Transport
class Docker < Kitchen::Transport::Base
class DockerFailed < TransportFailed; end

kitchen_transport_api_version 1
# kitchen_transport_api_version 1
plugin_version Kitchen::VERSION

default_config :binary, "docker"
Expand Down
2 changes: 1 addition & 1 deletion test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:7
FROM almalinux:latest
RUN yum clean all
RUN yum install -y sudo openssh-server openssh-clients which curl htop
RUN ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
Expand Down
14 changes: 7 additions & 7 deletions test/integration/default/disabled/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
#

# Disable now busser-server is gone.
require "serverspec"
require "spec_helper"

# # Just make sure the image launched and is reachable.
describe command("true") do
its(:exit_status) { is_expected.to eq 0 }
end
# require "serverspec"
# require "spec_helper"
#
# Just make sure the image launched and is reachable.
# describe command("true") do
# its(:exit_status) { is_expected.to eq 0 }
# end

0 comments on commit b1c904a

Please sign in to comment.