Update k8s client and the dependencies ACI client change for Mocking Add ACI Provider Mock Tests Add the Windows development environment Add UT for Default Resource Requests Enable the make test in Docker file Update the vendors
11 lines
138 B
Bash
Executable File
11 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname $0)"
|
|
DIRS=". assert require mock _codegen"
|
|
set -e
|
|
for subdir in $DIRS; do
|
|
pushd $subdir
|
|
go vet
|
|
popd
|
|
done
|