Skip to content
Snippets Groups Projects
Verified Commit 8b494ed7 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[CI] Turn all scripts into arrays

parent 8262c67f
No related branches found
No related tags found
No related merge requests found
Pipeline #361 failed
......@@ -20,15 +20,18 @@ cache:
test:
stage: test
before_script: adduser --disabled-password --gecos "Test User" testuser
script: sudo -u testuser tox
before_script:
- adduser --disabled-password --gecos "Test User" testuser
script:
- sudo -u testuser tox
artifacts:
paths:
- htmlcov/
lint:
stage: test
script: tox -e lint,security
script:
- tox -e lint,security
allow_failure: true
build_dist:
......@@ -41,7 +44,8 @@ build_dist:
pages:
stage: deploy
script: tox -e docs -- BUILDDIR=../public/docs
script:
- tox -e docs -- BUILDDIR=../public/docs
artifacts:
paths:
- public/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment