Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
test-infra: docker experimental is not enabled for MacOSX (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v authored Jun 12, 2020
1 parent ff89a5b commit 9ae9404
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test-infra/beats-ci/test_installed_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ def test_docker_compose_installed(host):
assert cmd.rc == 0, "it is required for all the Beats projects"

def test_docker_experimental_configured(host):
# HOME should point to the USER home for this validation
cmd = "docker version -f '{{.Client.Experimental}}'"
assert host.check_output(cmd) == "true", "it is required for building the ARM docker images in the Beats project"
if host.system_info.type == 'darwin' :
pytest.skip("unsupported configuration")
else:
# HOME should point to the USER home for this validation
cmd = "docker version -f '{{.Client.Experimental}}'"
assert host.check_output(cmd) == "true", "it is required for building the ARM docker images in the Beats project"

def test_gvm_installed(host):
cmd = host.run("gvm --version")
Expand Down

0 comments on commit 9ae9404

Please sign in to comment.