Skip to content
Snippets Groups Projects
Verified Commit 9b76b1ec authored by Daniel Hornung's avatar Daniel Hornung
Browse files

MAINT: Parallelizing pipeline.

parent c1065a67
No related branches found
No related tags found
1 merge request!46TEST: Better exception message if server sends wrong XML.
Pipeline #19939 failed
...@@ -39,6 +39,7 @@ stages: ...@@ -39,6 +39,7 @@ stages:
code_style: code_style:
tags: [ docker ] tags: [ docker ]
stage: code_style stage: code_style
needs: [ ]
script: script:
- make style - make style
allow_failure: true allow_failure: true
...@@ -47,6 +48,7 @@ code_style: ...@@ -47,6 +48,7 @@ code_style:
pylint: pylint:
tags: [ docker ] tags: [ docker ]
stage: linting stage: linting
needs: [ ]
script: script:
- make lint - make lint
allow_failure: true allow_failure: true
...@@ -55,6 +57,7 @@ pylint: ...@@ -55,6 +57,7 @@ pylint:
unittest: unittest:
tags: [ docker ] tags: [ docker ]
stage: test stage: test
needs: [ ]
script: script:
- touch ~/.pycaosdb.ini - touch ~/.pycaosdb.ini
- make unittest - make unittest
......
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