aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-11-06 19:42:29 +0100
committerGravatar Johannes Christ <[email protected]>2018-11-06 19:42:29 +0100
commit312cbb9a9b0aed11a0b668c1551f1b092d4c00aa (patch)
treee0b26be636d8dc0c33d40ec7beddf24090bd3112
parentInstall all `psycopg2` dependencies. (diff)
Quote script.
-rw-r--r--.gitlab-ci.yml3
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: