devops-exercises/scripts/run_ci.sh
2019-12-23 18:40:32 +02:00

6 lines
152 B
Bash
Executable File

#!/bin/bash
# These are the same steps we are running in Travis CI
python tests/syntax_checker.py
flake8 --max-line-length=100 . && echo "PEP8 Passed"