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).
This commit is contained in:
abregman
2019-12-21 21:27:26 +02:00
parent b4c46326d8
commit 5eb968571e
2 changed files with 9 additions and 0 deletions

View File

@ -110,3 +110,4 @@ def check_summary_tag(file_list):
if __name__ == '__main__':
check_details_tag(file_list)
check_summary_tag(file_list)
print("tests passed successfully")