devops-exercises/.travis.yml
abregman 5eb968571e Add .travis.yml
For running the newly added syntax_checker + PEP8 test
for the Python files in this project.

Also added small print to syntax_checker to indicate tests passed
successfully (yes, lack of error is also indication but this is
more user friendly imho).
2019-12-21 21:28:51 +02:00

9 lines
133 B
YAML

language: "python"
python:
- "3.8"
install:
- pip install flake8
script:
- flake8 .
- python tests/syntax_checker.py