[FIX] restore black check

This commit is contained in:
Sylvain LE GAL 2022-04-10 21:51:46 +02:00
parent 9c376bbb34
commit fbd58837e3

View File

@ -4,8 +4,23 @@ services:
- docker:18.09-dind
stages:
- linting
- tests
black:
stage: linting
image: python
script:
# Install pipx
- pip install --user pipx
- python -m pipx ensurepath
- source ~/.profile
# Black Check
- pipx install black
- black --version
- black --check .
pytest:
stage: tests
script: