diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index bac62a219..80cbaf9b4 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -25,7 +25,7 @@ jobs: sudo dpkg -i packages-microsoft-prod.deb sudo apt-get update sudo apt-get install blobfuse - make verify + go test -covermode=count -coverprofile=profile.cov ./pkg/... - name: Run build test run: | diff --git a/hack/verify-helm-chart.sh b/hack/verify-helm-chart.sh index 337ff53e6..f5591c363 100755 --- a/hack/verify-helm-chart.sh +++ b/hack/verify-helm-chart.sh @@ -58,7 +58,7 @@ if [[ -z "$(command -v jq)" ]]; then fi # jq-equivalent for yaml -pip install yq --ignore-installed PyYAML +pip install yq --break-system-packages --ignore-installed PyYAML # Extract images from csi-blob-controller.yaml expected_csi_provisioner_image="$(cat ${PKG_ROOT}/deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[0].image | head -n 1)"