modified: .gitlab-ci.yml

This commit is contained in:
Lukáš Krupčík 2018-10-03 08:09:57 +02:00
parent 63b42cb770
commit 42845da7aa

View File

@ -26,6 +26,7 @@ python_check:
image: davidhrbac/docker-pycheck:latest
script:
- which autopep8 || pip install autopep8
- which git || apt update && apt install git
- for i in `git show HEAD | egrep "new file|modified" | grep ".eb" | cut -d ":" -f 2 | cut -d " " -f 4`; do echo $i; autopep8 --in-place --aggressive --aggressive "$i"; done
only:
- master