Merge branch 'main' into ldap_userAttributeForFilter

This commit is contained in:
Joshua Casey
2023-05-31 14:41:16 -05:00
committed by GitHub
3 changed files with 15 additions and 15 deletions

View File

@@ -17,21 +17,11 @@ function lint_cmd() {
}
function test_cmd() {
if [ -x "$(command -v gotest)" ]; then
cmd='gotest'
else
cmd='go test'
fi
echo "${cmd} -count 1 -race ./..."
echo "go test -count 1 -race ./..."
}
function unittest_cmd() {
if [ -x "$(command -v gotest)" ]; then
cmd='gotest'
else
cmd='go test'
fi
echo "${cmd} -short -race ./..."
echo "go test -short -race ./..."
}
function with_modules() {