6 lines
149 B
Bash
Raw Permalink Normal View History

2019-12-23 18:37:33 +02:00
#!/bin/bash
# These are the same steps we are running in Travis CI
2020-01-09 12:07:41 +01:00
python tests/syntax_lint.py
2019-12-23 18:37:33 +02:00
flake8 --max-line-length=100 . && echo "PEP8 Passed"