dotfiles/scripts/runtests.sh
2016-03-19 18:02:42 +00:00

22 lines
562 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo ">> Validating JSON..."
npm install jsonlint -g
jsonlint -q apt/apt-installs-core.json
jsonlint -q apt/apt-installs-extra.json
jsonlint -q apt/apt-keys.json
jsonlint -q apt/apt-repos.json
jsonlint -q atom/packages.json
jsonlint -q yaourt/packages.json
echo ">> Validating Python..."
pip install flake8
flake8 atom/exports.py --ignore=E128,E501,E401,F403
flake8 scripts/installers.py --ignore=E128,E501,E401,F403
flake8 yaourt/exports.py --ignore=E128,E501,E401,F403
flake8 INSTALL_ALL_THE_THINGS --ignore=E128,E501,E401,F403