This commit is contained in:
Kovid Goyal 2018-06-16 08:41:19 +05:30
parent 6b4217c12a
commit 73b870bb87
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -155,7 +155,7 @@ script: |
if grep -Inr '\s$' kitty kitty_tests kittens docs *.py *.asciidoc *.rst .gitattributes .gitignore; then echo Trailing whitespace found, aborting.; exit 1; fi
if [[ -z $SANITIZE_ARG ]]; then $PYTHON test.py; else ./asan-launcher test.py; fi
if [[ -z "$SANITIZE_ARG" ]]; then $PYTHON test.py; else ./asan-launcher test.py; fi
if [[ "$RUN_FLAKE" == "1" ]]; then flake8 --count .; fi