diff options
author | 2018-11-06 19:42:29 +0100 | |
---|---|---|
committer | 2018-11-06 19:42:29 +0100 | |
commit | 312cbb9a9b0aed11a0b668c1551f1b092d4c00aa (patch) | |
tree | e0b26be636d8dc0c33d40ec7beddf24090bd3112 | |
parent | Install all `psycopg2` dependencies. (diff) |
Quote script.
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33c2eb44..b268400d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,8 @@ lint-python: image: python:3.7-alpine before_script: # Extract lint dependencies from the setup script. - - python -m pip install $(sed -n -e "/'lint': \[/,/]/p" setup.py | tail -n +2 | head -n -1 | cut -d"'" -f2) + - > + python -m pip install $(sed -n -e "/'lint': \[/,/]/p" setup.py | tail -n +2 | head -n -1 | cut -d"'" -f2) script: - flake8 tags: |