You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
360 B

#!/bin/bash
# Scripts path
SCRIPT_PATH="$( dirname -- "$( readlink -f -- "${0}"; )"; )/script"
# Activate OctoDNS Python venv
source "${SCRIPT_PATH}/common.sh"
"${SCRIPT_PATH}/changelog" check
"${SCRIPT_PATH}/lint"
"${SCRIPT_PATH}/format" --check --quiet || (
echo "Formatting check failed, run ./script/format" &&
exit 1
)
"${SCRIPT_PATH}/coverage"