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
328 B

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