modified: .gitlab-ci.yml

This commit is contained in:
Lukáš Krupčík 2018-10-03 08:42:35 +02:00
parent 25ed18302f
commit a4f94157ac

View File

@ -28,6 +28,6 @@ python_formatter:
script:
- which autopep8 || pip install autopep8
- which git || apt update && apt install -y git
- for i in `git whatchanged -4 | egrep "new|modified" | grep ".eb" | cut -d ":" -f 2 | cut -d " " -f 4`; do echo $i; autopep8 --in-place --aggressive --aggressive "$i"; done
- for i in `git whatchanged -4 | egrep "new|modified" | grep ".eb" | cut -d ":" -f 2 | cut -d " " -f 4`; do echo $i; autopep8 "$i"; done
only:
- master