1
0
mirror of https://github.com/bregman-arie/devops-exercises.git synced 2024-11-27 08:30:52 +02:00

Rename syntax_checker into syntax_lint

This commit is contained in:
surister 2020-01-09 12:07:41 +01:00
parent 6d45375c81
commit cc95d4631e

View File

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