diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-25 16:36:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 16:36:01 -0400 |
commit | 05bdb4139a02eb35220c23b8ae8fe355f6d91406 (patch) | |
tree | 59e3b673f018d25dde266b158c6b799c65c603f6 /hack/golangci-lint.sh | |
parent | 181c9d3ee3ad4820b9ae91f1f02faf7b9e65fc87 (diff) | |
parent | 833456e079c31111a15fedaa3ccd7f852e89e508 (diff) | |
download | podman-05bdb4139a02eb35220c23b8ae8fe355f6d91406.tar.gz podman-05bdb4139a02eb35220c23b8ae8fe355f6d91406.tar.bz2 podman-05bdb4139a02eb35220c23b8ae8fe355f6d91406.zip |
Merge pull request #13942 from baude/machinetests
Add podman machine test suite
Diffstat (limited to 'hack/golangci-lint.sh')
-rwxr-xr-x | hack/golangci-lint.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/golangci-lint.sh b/hack/golangci-lint.sh index bcb83a2fd..8b80bd9c9 100755 --- a/hack/golangci-lint.sh +++ b/hack/golangci-lint.sh @@ -10,9 +10,9 @@ BUILD_TAGS[abi]="${BUILD_TAGS[default]},!remoteclient" BUILD_TAGS[tunnel]="${BUILD_TAGS[default]},remote,remoteclient" declare -A SKIP_DIRS -SKIP_DIRS[abi]="" +SKIP_DIRS[abi]="pkg/machine/e2e" # TODO: add "remote" build tag to pkg/api -SKIP_DIRS[tunnel]="pkg/api" +SKIP_DIRS[tunnel]="pkg/api,pkg/machine/e2e" [[ $1 == run ]] && shift |