1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfile-automator/scripts/runtests

16 lines
244 B
Bash
Executable File

#!/usr/bin/env bash
set -e
export PATH=env/bin:${PATH}
flake8 project --ignore=E128,E501,E401
echo ">> Flake8 Tests Completed"
if [ "$1" == "CI" ]; then
echo ">> Installing CLI..."
bash scripts/build
fi
echo ">> All Tests Passed!"